summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorMinijackson <minijackson@riseup.net>2025-01-15 22:52:00 +0100
committerMinijackson <minijackson@riseup.net>2025-01-15 22:52:00 +0100
commit4c030e0d0cdcbe9918e77239e0117ecb4ebe028d (patch)
treeeb17416551fe40ffd1778604231dc095f8743700 /common
parent7b9f4125b495892206998ccb23b22b598d9cd54e (diff)
downloadnixos-config-reborn-4c030e0d0cdcbe9918e77239e0117ecb4ebe028d.tar.gz
nixos-config-reborn-4c030e0d0cdcbe9918e77239e0117ecb4ebe028d.zip
common/commandline: don't hardcode rsync in alias
Diffstat (limited to 'common')
-rw-r--r--common/commandline.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/commandline.nix b/common/commandline.nix
index 1371beb..9d55a23 100644
--- a/common/commandline.nix
+++ b/common/commandline.nix
@@ -81,7 +81,7 @@ in {
81 environment.shellAliases = { 81 environment.shellAliases = {
82 e = config.environment.variables.EDITOR; 82 e = config.environment.variables.EDITOR;
83 o = "xdg-open"; 83 o = "xdg-open";
84 cpr = "${pkgs.rsync}/bin/rsync -ah --inplace --info=progress2"; 84 cpr = "rsync -ah --inplace --info=progress2";
85 }; 85 };
86 86
87 programs.bash.completion.enable = true; 87 programs.bash.completion.enable = true;