mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2025-12-13 08:31:01 -05:00
Adding some bash aliases
This commit is contained in:
parent
5dff08ffca
commit
91d9e2b0af
1 changed files with 10 additions and 1 deletions
|
|
@ -89,7 +89,16 @@ inputs.nixpkgs.lib.nixosSystem {
|
||||||
enableBashIntegration = true;
|
enableBashIntegration = true;
|
||||||
nix-direnv.enable = true;
|
nix-direnv.enable = true;
|
||||||
};
|
};
|
||||||
bash.enable = true;
|
bash = {
|
||||||
|
enable = true;
|
||||||
|
shellAliases = {
|
||||||
|
s = "kitten ssh";
|
||||||
|
la = "ls -a";
|
||||||
|
ll = "ls -l";
|
||||||
|
lal = "ls -la";
|
||||||
|
cls = "clear && ls";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue