1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-07 21:03:51 +00:00
ultima/laptop/host/parts/disks.nix
2024-11-21 18:24:15 +09:00

18 lines
477 B
Nix

{ modulesPath, ... }: {
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
fileSystems = {
"/" = { # ROOT
device = "/dev/disk/by-uuid/9913d333-cd8d-4960-8e3c-4af764b9a9ca";
label = "nixos";
fsType = "btrfs";
options = [ "subvol=@" "compress=zstd" ];
};
"/boot" = { # EFI
device = "/dev/disk/by-uuid/8547-1299";
label = "esp";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
};
}