for server
disk-config.nix
47 lines 1.1 kB view raw
1{ 2 disko.devices = { 3 disk = { 4 main = { 5 type = "disk"; 6 device = "/dev/vda"; 7 content = { 8 type = "gpt"; 9 partitions = { 10 ESP = { 11 priority = 1; 12 name = "ESP"; 13 start = "1M"; 14 end = "128M"; 15 type = "EF00"; 16 content = { 17 type = "filesystem"; 18 format = "vfat"; 19 mountpoint = "/boot"; 20 mountOptions = [ "umask=0077" ]; 21 }; 22 }; 23 root = { 24 size = "85%"; 25 content = { 26 type = "btrfs"; 27 extraArgs = [ "-f" ]; # Override existing partition 28 mountpoint = "/"; 29 mountOptions = [ 30 "compress=zstd" 31 "noatime" 32 ]; 33 }; 34 }; 35 plainSwap = { 36 size = "15%"; 37 content = { 38 type = "swap"; 39 discardPolicy = "both"; 40 }; 41 }; 42 }; 43 }; 44 }; 45 }; 46 }; 47}