mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-13 05:06:42 +02:00
Continue moving fish config to fish module
This commit is contained in:
parent
8c027300e6
commit
a9703aad9a
@ -68,16 +68,8 @@
|
|||||||
jack.enable = true;
|
jack.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.fish.enable = true;
|
|
||||||
users.defaultUserShell = pkgs.fish;
|
users.defaultUserShell = pkgs.fish;
|
||||||
environment.shells = with 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";
|
time.timeZone = "America/New_York";
|
||||||
|
|
||||||
|
@ -1,5 +1,13 @@
|
|||||||
{
|
{
|
||||||
programs.fish = {
|
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 = {
|
shellAbbrs = {
|
||||||
g = "git";
|
g = "git";
|
||||||
ga = "git add";
|
ga = "git add";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user