1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2024-12-29 20:13:51 +00:00
ultima/wyswort/host/parts/disks.nix

27 lines
533 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"
];
};
};
}