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"; environment.variables.COLORTERM = "truecolor";
# Packages used on all systems # 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 ## Locale/Timezone

View File

@ -11,7 +11,17 @@ in {
home.username = "agatha"; home.username = "agatha";
home.homeDirectory = "/home/agatha"; home.homeDirectory = "/home/agatha";
home.stateVersion = config.system.stateVersion; 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 = { programs = {
home-manager.enable = true; home-manager.enable = true;
@ -68,8 +78,11 @@ in {
fish = { fish = {
enable = true; enable = true;
# interactiveShellInit = builtins.readFile (pkgs.fetchurl interactiveShellInit = builtins.readFile (pkgs.fetchurl {
# "https://git.lain.faith/sorceress/dotfiles/raw/branch/mistress/.config/fish/config.fish"); url =
"https://git.lain.faith/sorceress/dotfiles/raw/commit/80be649e9663e3db67041192c714329e20b10cc9/.config/fish/config.fish";
sha256 = "sha256-ZZCTXnRZfotksiJj7iVJnLz+XnWHTlIsZzv3gbbZoRQ=";
});
plugins = [ plugins = [
{ {
name = "fzf"; name = "fzf";