18 lines
324 B
Nix
18 lines
324 B
Nix
{ ... }:
|
|
{
|
|
system.stateVersion = "24.11";
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-uuid/6de79a95-d101-4734-8482-1e0869498ce8";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
fileSystems."/boot" = {
|
|
device = "/dev/disk/by-uuid/78B9-CA51";
|
|
fsType = "vfat";
|
|
options = [
|
|
"fmask=0077"
|
|
"dmask=0077"
|
|
];
|
|
};
|
|
}
|