forked from mirrors/nixpkgs
NixOS: fix XCURSOR_PATH expansion
This fix allows expansion of XCURSORPATH by using type array instead of a string.
This commit is contained in:
parent
0afb6d789c
commit
f3cfc10ebb
|
@ -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 =
|
||||
|
|
Loading…
Reference in a new issue