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