diff --git a/modules/bash.nix b/modules/bash.nix index c48119f..29e99d0 100644 --- a/modules/bash.nix +++ b/modules/bash.nix @@ -3,14 +3,13 @@ enable = true; enableVteIntegration = true; shellAliases = { - "ll" = "ls -l"; - "la" = "ls -la"; - ".." = "cd .."; + "ll" = "ls -l"; + "la" = "ls -la"; + ".." = "cd .."; }; bashrcExtra = '' source $HOME/.profile ''; - }; - + }; }