Server NixOS configs
0
fork

Configure Feed

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

fix: drop lvm?

+3 -19
+3 -19
hosts/tethys/disko.nix
··· 1 1 { 2 2 disko.devices = { 3 - lvm_vg = { 4 - root = { 5 - type = "lvm_vg"; 6 - lvs = { 7 - root = { 8 - size = "100%FREE"; 9 - content = { 10 - type = "filesystem"; 11 - format = "xfs"; 12 - mountpoint = "/"; 13 - mountOptions = ["defaults"]; 14 - }; 15 - }; 16 - }; 17 - }; 18 - }; 19 - 20 3 disk = { 21 4 main = { 22 5 type = "disk"; ··· 43 26 name = "root"; 44 27 size = "100%"; 45 28 content = { 46 - type = "lvm_pv"; 47 - vg = "root"; 29 + type = "filesystem"; 30 + format = "xfs"; 31 + mountpoint = "/"; 48 32 }; 49 33 }; 50 34 };