Server NixOS configs
0
fork

Configure Feed

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

fix: updates to disk config

+4 -6
+4 -6
hosts/tethys/disks.nix
··· 3 3 disk = { 4 4 main = { 5 5 type = "disk"; 6 - device = "/dev/sda"; 6 + device = "/dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_117166468"; 7 7 content = { 8 8 type = "gpt"; 9 9 partitions = { 10 10 boot = { 11 - name = "boot"; 12 11 size = "1M"; 13 12 type = "EF02"; # for grub MBR 14 13 }; 15 - esp = { 16 - name = "ESP"; 17 - size = "1G"; 14 + ESP = { 15 + size = "512M"; 18 16 type = "EF00"; 19 17 content = { 20 18 type = "filesystem"; 21 19 format = "vfat"; 22 20 mountpoint = "/boot"; 21 + mountOptions = [ "umask=0077" ]; 23 22 }; 24 23 }; 25 24 root = { 26 - name = "root"; 27 25 size = "100%"; 28 26 content = { 29 27 type = "filesystem";