From 684120e8d6ba6d23619e785105f581902e6c35b7 Mon Sep 17 00:00:00 2001 From: Filippo Berto Date: Mon, 30 Aug 2021 09:22:42 +0200 Subject: [PATCH] Fix formatting --- modules/bash.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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 ''; - }; - + }; }