lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #165935 from helsinki-systems/feat/move-special-fs-options-into-module

nixos/filesystems: Move options into the fs module

authored by

ajs124 and committed by
GitHub
f5054121 ed612de9

+29 -30
-30
nixos/modules/system/boot/stage-2.nix
··· 47 47 ''; 48 48 }; 49 49 50 - devSize = mkOption { 51 - default = "5%"; 52 - example = "32m"; 53 - type = types.str; 54 - description = '' 55 - Size limit for the /dev tmpfs. Look at mount(8), tmpfs size option, 56 - for the accepted syntax. 57 - ''; 58 - }; 59 - 60 - devShmSize = mkOption { 61 - default = "50%"; 62 - example = "256m"; 63 - type = types.str; 64 - description = '' 65 - Size limit for the /dev/shm tmpfs. Look at mount(8), tmpfs size option, 66 - for the accepted syntax. 67 - ''; 68 - }; 69 - 70 - runSize = mkOption { 71 - default = "25%"; 72 - example = "256m"; 73 - type = types.str; 74 - description = '' 75 - Size limit for the /run tmpfs. Look at mount(8), tmpfs size option, 76 - for the accepted syntax. 77 - ''; 78 - }; 79 - 80 50 systemdExecutable = mkOption { 81 51 default = "systemd"; 82 52 type = types.str;
+29
nixos/modules/tasks/filesystems.nix
··· 215 215 ''; 216 216 }; 217 217 218 + boot.devSize = mkOption { 219 + default = "5%"; 220 + example = "32m"; 221 + type = types.str; 222 + description = '' 223 + Size limit for the /dev tmpfs. Look at mount(8), tmpfs size option, 224 + for the accepted syntax. 225 + ''; 226 + }; 227 + 228 + boot.devShmSize = mkOption { 229 + default = "50%"; 230 + example = "256m"; 231 + type = types.str; 232 + description = '' 233 + Size limit for the /dev/shm tmpfs. Look at mount(8), tmpfs size option, 234 + for the accepted syntax. 235 + ''; 236 + }; 237 + 238 + boot.runSize = mkOption { 239 + default = "25%"; 240 + example = "256m"; 241 + type = types.str; 242 + description = '' 243 + Size limit for the /run tmpfs. Look at mount(8), tmpfs size option, 244 + for the accepted syntax. 245 + ''; 246 + }; 218 247 }; 219 248 220 249