this repo has no description
1
fork

Configure Feed

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

Fix black mesa

Ben C acf23ff7 b5ee5fd2

+9 -3
+1 -1
nixosConfigurations/black-mesa.nix
··· 50 50 imperm.enable = true; 51 51 disks = { 52 52 enable = true; 53 - swap = true; 53 + swap = false; 54 54 luks = true; 55 55 }; 56 56 };
+8 -2
nixosModules/disks.nix
··· 28 28 in 29 29 lib.mkIf config.cow.disks.enable { 30 30 boot.initrd.luks.devices = lib.mkIf conf.luks { 31 - "cryptroot".device = primaryPart; 32 - "cryptswap".device = swapPart; 31 + "cryptroot" = { 32 + device = primaryPart; 33 + fallbackToPassword = true; 34 + }; 35 + "cryptswap" = { 36 + device = swapPart; 37 + fallbackToPassword = true; 38 + }; 33 39 }; 34 40 swapDevices = [ 35 41 {