Server NixOS configs
0
fork

Configure Feed

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

fix: update disko

+7 -5
+7 -5
hosts/tethys/disko.nix
··· 5 5 type = "lvm_vg"; 6 6 lvs = { 7 7 root = { 8 - size = "100%"; 8 + size = "100%FREE"; 9 9 content = { 10 10 type = "filesystem"; 11 11 format = "xfs"; ··· 20 20 disk = { 21 21 main = { 22 22 type = "disk"; 23 - device = "sda"; 23 + device = "/dev/sda"; 24 24 content = { 25 25 type = "gpt"; 26 26 partitions = { 27 27 boot = { 28 + name = "boot"; 28 29 size = "1M"; 29 30 type = "EF02"; # for grub MBR 30 31 }; 31 - ESP = { 32 + esp = { 33 + name = "ESP"; 32 34 size = "1G"; 33 35 type = "EF00"; 34 36 content = { 35 37 type = "filesystem"; 36 38 format = "vfat"; 37 39 mountpoint = "/boot"; 38 - mountOptions = [ "umask=0077" ]; 39 40 }; 40 41 }; 41 42 root = { 43 + name = "root"; 42 44 size = "100%"; 43 45 content = { 44 - type = "lvm_vg"; 46 + type = "lvm_pv"; 45 47 vg = "root"; 46 48 }; 47 49 };