+1
-18
nixos/modules/security/hidepid.nix
+1
-18
nixos/modules/security/hidepid.nix
···-ExecStart = ''${pkgs.utillinux}/bin/mount -o remount,hidepid=2,gid=${toString config.ids.gids.proc} /proc'';
+9
-3
nixos/modules/system/activation/activation-script.nix
+9
-3
nixos/modules/system/activation/activation-script.nix
···
···
+14
-12
nixos/modules/system/boot/stage-1-init.sh
+14
-12
nixos/modules/system/boot/stage-1-init.sh
···
···
+3
-1
nixos/modules/system/boot/stage-1.nix
+3
-1
nixos/modules/system/boot/stage-1.nix
···preLVMCommands preDeviceCommands postDeviceCommands postMountCommands preFailCommands kernelModules;
+10
-19
nixos/modules/system/boot/stage-2-init.sh
+10
-19
nixos/modules/system/boot/stage-2-init.sh
·········
·········
+1
-2
nixos/modules/system/boot/stage-2.nix
+1
-2
nixos/modules/system/boot/stage-2.nix
···
+37
-4
nixos/modules/tasks/filesystems.nix
+37
-4
nixos/modules/tasks/filesystems.nix
···············message = "The ‘fileSystems’ option can't be topologically sorted: mountpoint dependency path ${ls " -> " fileSystems'.cycle} loops to ${ls ", " fileSystems'.loops}";······
·········+specialMount "${mount.device}" "${mount.mountPoint}" "${concatStringsSep "," mount.options}" "${mount.fsType}"······message = "The ‘fileSystems’ option can't be topologically sorted: mountpoint dependency path ${ls " -> " fileSystems'.cycle} loops to ${ls ", " fileSystems'.loops}";+{ assertion = all (x: !x.early || (x.label == null && !x.autoFormat && !x.autoResize)) fileSystems;······+"/run" = { fsType = "tmpfs"; options = [ "nosuid" "nodev" "strictatime" "mode=755" "size=${config.boot.runSize}" ]; };+"/dev" = { fsType = "devtmpfs"; options = [ "nosuid" "strictatime" "mode=755" "size=${config.boot.devSize}" ]; };+"/dev/shm" = { fsType = "tmpfs"; options = [ "nosuid" "nodev" "strictatime" "mode=1777" "size=${config.boot.devShmSize}" ]; };+"/dev/pts" = { fsType = "devpts"; options = [ "nosuid" "noexec" "mode=620" "gid=${toString config.ids.gids.tty}" ]; };