summary refs log tree commit diff
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
parent1b11fdd0df2254a762a16d04e603ba99e42169c0 (diff)
downloadnixpkgs-854ebed7893b53d4991ec0839da3697baee41501.tar
nixpkgs-854ebed7893b53d4991ec0839da3697baee41501.tar.gz
nixpkgs-854ebed7893b53d4991ec0839da3697baee41501.tar.bz2
nixpkgs-854ebed7893b53d4991ec0839da3697baee41501.tar.lz
nixpkgs-854ebed7893b53d4991ec0839da3697baee41501.tar.xz
nixpkgs-854ebed7893b53d4991ec0839da3697baee41501.tar.zst
nixpkgs-854ebed7893b53d4991ec0839da3697baee41501.zip
system-path: fix default option value
-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 6d17ca316e0..ffb437491f6 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.";
       };