summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/environment/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/environment/default.nix b/modules/environment/default.nix
index dced0a5..0382e4d 100644
--- a/modules/environment/default.nix
+++ b/modules/environment/default.nix
@@ -33,7 +33,7 @@ in {
environment.systemPath = mkOption {
type = types.loeOf types.path;
- default = (reverseList cfg.profiles) ++ [ "/usr/local" "/usr" "" ];
+ default = cfg.profiles ++ [ "/usr/local" "/usr" "" ];
description = "The set of paths that are added to PATH.";
apply = x: if isList x then makeBinPath x else x;
};