1
0
Fork 0

fix(nix): specify fish shell in sys.nix

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2024-11-11 19:36:04 -05:00
parent 8e32035d07
commit 66917ab4d4
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47
2 changed files with 13 additions and 12 deletions

View file

@ -93,6 +93,7 @@
description = "Lucas";
extraGroups = [ "networkmanager" "wheel" "docker" ];
packages = with pkgs; [ ];
shell = pkgs.fish;
};
documentation.dev.enable = true;
@ -139,6 +140,18 @@
programs.steam.enable = true;
programs.dconf.enable = true;
programs.fish = {
enable = true;
shellAliases = {
psax = "ps -ax | grep -i";
ls = "eza";
ll = "eza --all --long";
e = "emacs";
ed = "emacs --daemon";
ec = ''emacsclient -n -c -a ""'';
};
};
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;