fix(nix): specify fish shell in sys.nix
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
parent
8e32035d07
commit
66917ab4d4
2 changed files with 13 additions and 12 deletions
|
@ -190,18 +190,6 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
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.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = "Lucas Sta Maria";
|
userName = "Lucas Sta Maria";
|
||||||
|
|
|
@ -93,6 +93,7 @@
|
||||||
description = "Lucas";
|
description = "Lucas";
|
||||||
extraGroups = [ "networkmanager" "wheel" "docker" ];
|
extraGroups = [ "networkmanager" "wheel" "docker" ];
|
||||||
packages = with pkgs; [ ];
|
packages = with pkgs; [ ];
|
||||||
|
shell = pkgs.fish;
|
||||||
};
|
};
|
||||||
|
|
||||||
documentation.dev.enable = true;
|
documentation.dev.enable = true;
|
||||||
|
@ -139,6 +140,18 @@
|
||||||
programs.steam.enable = true;
|
programs.steam.enable = true;
|
||||||
programs.dconf.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 = {
|
programs.gnupg.agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableSSHSupport = true;
|
enableSSHSupport = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue