Fix typo, lower-case -c...
This commit is contained in:
parent
6131cefaf3
commit
9fefa8c380
2
home/env/bash.nix
vendored
2
home/env/bash.nix
vendored
|
@ -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
2
home/env/fish.nix
vendored
|
@ -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
2
home/env/zsh.nix
vendored
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue