1
0
forked from extern/nix-config

Continue moving fish config to fish module

This commit is contained in:
Donovan Glover 2023-05-16 17:18:48 -04:00
parent 8c027300e6
commit a9703aad9a
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 8 additions and 8 deletions

View File

@ -68,16 +68,8 @@
jack.enable = true;
};
programs.fish.enable = true;
users.defaultUserShell = pkgs.fish;
environment.shells = with pkgs; [ fish ];
programs.fish.shellAliases = {
ls = "exa --group-directories-first -I 'lost+found'";
tree =
"exa --group-directories-first --all --long --tree -I 'node_modules|.git|public|lost+found'";
mv = "mv -i";
rg = "rg --max-columns=2000";
};
time.timeZone = "America/New_York";

View File

@ -1,5 +1,13 @@
{
programs.fish = {
enable = true;
shellAliases = {
ls = "exa --group-directories-first -I 'lost+found'";
tree =
"exa --group-directories-first --all --long --tree -I 'node_modules|.git|public|lost+found'";
mv = "mv -i";
rg = "rg --max-columns=2000";
};
shellAbbrs = {
g = "git";
ga = "git add";