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";
|
{ NIXPKGS_CONFIG = "/etc/nix/nixpkgs-config.nix";
|
||||||
PAGER = mkDefault "less -R";
|
PAGER = mkDefault "less -R";
|
||||||
EDITOR = mkDefault "nano";
|
EDITOR = mkDefault "nano";
|
||||||
XCURSOR_PATH = "$HOME/.icons";
|
XCURSOR_PATH = [ "$HOME/.icons" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.profiles =
|
environment.profiles =
|
||||||
|
Loading…
x
Reference in New Issue
Block a user