Add more utility packages; Add fish config

This commit is contained in:
Agatha Lovelace 2023-02-18 15:36:17 +01:00
parent e9570e8e96
commit 2a3b37c39e
Signed by: sorceress
GPG Key ID: 01D0B3AB10CED4F8
2 changed files with 24 additions and 4 deletions

View File

@ -38,7 +38,14 @@
environment.variables.COLORTERM = "truecolor";
# Packages used on all systems
environment.systemPackages = with pkgs; [ git wget xclip killall ];
environment.systemPackages = with pkgs; [
git
wget
xclip
killall
rsync
sqlite
];
## Locale/Timezone

View File

@ -11,7 +11,17 @@ in {
home.username = "agatha";
home.homeDirectory = "/home/agatha";
home.stateVersion = config.system.stateVersion;
home.packages = with pkgs; [ gnupg fzf btop bat ripgrep tealdeer ouch exa ];
home.packages = with pkgs; [
bat
btop
exa
fzf
gnupg
ouch
ripgrep
tealdeer
zoxide
];
programs = {
home-manager.enable = true;
@ -68,8 +78,11 @@ in {
fish = {
enable = true;
# interactiveShellInit = builtins.readFile (pkgs.fetchurl
# "https://git.lain.faith/sorceress/dotfiles/raw/branch/mistress/.config/fish/config.fish");
interactiveShellInit = builtins.readFile (pkgs.fetchurl {
url =
"https://git.lain.faith/sorceress/dotfiles/raw/commit/80be649e9663e3db67041192c714329e20b10cc9/.config/fish/config.fish";
sha256 = "sha256-ZZCTXnRZfotksiJj7iVJnLz+XnWHTlIsZzv3gbbZoRQ=";
});
plugins = [
{
name = "fzf";