about summary refs log tree commit diff
path: root/nixos/modules/config
diff options
context:
space:
mode:
authorMichael Peyton Jones <me@michaelpj.com>2018-08-20 09:23:11 +0100
committerMichael Peyton Jones <me@michaelpj.com>2018-08-20 09:23:11 +0100
commit854ebed7893b53d4991ec0839da3697baee41501 (patch)
treea94fde29f2aa468bf87e6402ade10e4a7c4a29fa /nixos/modules/config
parent1b11fdd0df2254a762a16d04e603ba99e42169c0 (diff)
system-path: fix default option value
Diffstat (limited to 'nixos/modules/config')
-rw-r--r--nixos/modules/config/system-path.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/config/system-path.nix b/nixos/modules/config/system-path.nix
index 6d17ca316e006..ffb437491f6c7 100644
--- a/nixos/modules/config/system-path.nix
+++ b/nixos/modules/config/system-path.nix
@@ -83,7 +83,7 @@ in
 
       extraSetup = mkOption {
         type = types.lines;
-        default = [ ];
+        default = "";
         description = "Shell fragments to be run after the system environment has been created. This should only be used for things that need to modify the internals of the environment, e.g. generating MIME caches. The environment being built can be accessed at $out.";
       };