Fix typo, lower-case -c...

This commit is contained in:
Evie Litherland-Smith 2023-05-16 15:59:49 +01:00
parent 6131cefaf3
commit 9fefa8c380
3 changed files with 3 additions and 3 deletions

2
home/env/bash.nix vendored
View file

@ -5,7 +5,7 @@
enable = true;
shellAliases = {
lg = "lazygit";
nixos-update = "sudo git -c /etc/nixos/config pull && sudo nixos-rebuild switch";
nixos-update = "sudo git -C /etc/nixos/config pull && sudo nixos-rebuild switch";
};
};
programs.keychain.enableBashIntegration = true;

2
home/env/fish.nix vendored
View file

@ -5,7 +5,7 @@
enable = true;
shellAbbrs = {
lg = "lazygit";
nixos-update = "sudo git -c /etc/nixos/config pull && sudo nixos-rebuild switch";
nixos-update = "sudo git -C /etc/nixos/config pull && sudo nixos-rebuild switch";
};
};
programs.keychain.enableFishIntegration = true;

2
home/env/zsh.nix vendored
View file

@ -6,7 +6,7 @@
shellAliases = {
ll = "ls -l";
lg = "lazygit";
nixos-update = "sudo git -c /etc/nixos/config pull && sudo nixos-rebuild switch";
nixos-update = "sudo git -C /etc/nixos/config pull && sudo nixos-rebuild switch";
};
history = {
size = 10000;