forked from extern/nix-config
Continue moving fish config to fish module
This commit is contained in:
parent
8c027300e6
commit
a9703aad9a
@ -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";
|
||||
|
||||
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user