summary refs log tree commit diff
path: root/nixos/modules/system/boot/stage-1.nix
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2016-08-23 18:01:35 +0000
committerJan Malakhovski <oxij@oxij.org>2016-08-23 18:14:06 +0000
commitb267785c43547dbe854c994a91b9f012c9b7812f (patch)
treecb88b704712effa94316c631da785b2317e35c10 /nixos/modules/system/boot/stage-1.nix
parent8da59c406cea9ee3fbe37fce6211421281c47b78 (diff)
downloadnixpkgs-b267785c43547dbe854c994a91b9f012c9b7812f.tar
nixpkgs-b267785c43547dbe854c994a91b9f012c9b7812f.tar.gz
nixpkgs-b267785c43547dbe854c994a91b9f012c9b7812f.tar.bz2
nixpkgs-b267785c43547dbe854c994a91b9f012c9b7812f.tar.lz
nixpkgs-b267785c43547dbe854c994a91b9f012c9b7812f.tar.xz
nixpkgs-b267785c43547dbe854c994a91b9f012c9b7812f.tar.zst
nixpkgs-b267785c43547dbe854c994a91b9f012c9b7812f.zip
nixos: generalize copy-paste from stage-1 and zfs to utils
Diffstat (limited to 'nixos/modules/system/boot/stage-1.nix')
-rw-r--r--nixos/modules/system/boot/stage-1.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix
index 982f4e4a85c..a5c05f3dbba 100644
--- a/nixos/modules/system/boot/stage-1.nix
+++ b/nixos/modules/system/boot/stage-1.nix
@@ -26,9 +26,7 @@ let
   # The initrd only has to mount `/` or any FS marked as necessary for
   # booting (such as the FS containing `/nix/store`, or an FS needed for
   # mounting `/`, like `/` on a loopback).
-  fileSystems = filter
-    (fs: fs.neededForBoot || elem fs.mountPoint [ "/" "/nix" "/nix/store" "/var" "/var/log" "/var/lib" "/etc" ])
-    config.system.build.fileSystems;
+  fileSystems = filter utils.fsNeededForBoot config.system.build.fileSystems;
 
 
   # Some additional utilities needed in stage 1, like mount, lvm, fsck