17 lines
350 B
Nix
17 lines
350 B
Nix
{
|
|
boot.loader = {
|
|
systemd-boot.enable = true;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
fileSystems = {
|
|
"/" =
|
|
{ device = "/dev/disk/by-label/nixos";
|
|
fsType = "btrfs";
|
|
};
|
|
"/boot" =
|
|
{ device = "/dev/disk/by-label/boot";
|
|
fsType = "vfat";
|
|
options = [ "fmask=0077" "dmask=0077" ];
|
|
};
|
|
};
|
|
}
|