summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-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 2e3d921..1e48065 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;
};