about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaka Hudoklin <offlinehacker@users.noreply.github.com>2017-05-25 01:12:24 +0200
committerGitHub <noreply@github.com>2017-05-25 01:12:24 +0200
commitee8aab13ecec17fbae2e41c97d38f01ef142adc9 (patch)
treeec48db96766984eae0e62f1dc11dcfd0682e9024
parent459c77105cb0cba780591c449725353339feb7b9 (diff)
parentf3cfc10ebbd7294af96820c77464ccaf0d581253 (diff)
downloadnixlib-ee8aab13ecec17fbae2e41c97d38f01ef142adc9.tar
nixlib-ee8aab13ecec17fbae2e41c97d38f01ef142adc9.tar.gz
nixlib-ee8aab13ecec17fbae2e41c97d38f01ef142adc9.tar.bz2
nixlib-ee8aab13ecec17fbae2e41c97d38f01ef142adc9.tar.lz
nixlib-ee8aab13ecec17fbae2e41c97d38f01ef142adc9.tar.xz
nixlib-ee8aab13ecec17fbae2e41c97d38f01ef142adc9.tar.zst
nixlib-ee8aab13ecec17fbae2e41c97d38f01ef142adc9.zip
Merge pull request #26025 from ck3d/XCURSOR_PATH-exp
NixOS: fix XCURSOR_PATH expansion
-rw-r--r--nixos/modules/programs/environment.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/programs/environment.nix b/nixos/modules/programs/environment.nix
index 6c0d5d8b6049..ba356a8ad2dd 100644
--- a/nixos/modules/programs/environment.nix
+++ b/nixos/modules/programs/environment.nix
@@ -20,7 +20,7 @@ in
       { NIXPKGS_CONFIG = "/etc/nix/nixpkgs-config.nix";
         PAGER = mkDefault "less -R";
         EDITOR = mkDefault "nano";
-        XCURSOR_PATH = "$HOME/.icons";
+        XCURSOR_PATH = [ "$HOME/.icons" ];
       };
 
     environment.profiles =