14 lines
243 B
Nix
14 lines
243 B
Nix
{ config, pkgs, ... }: {
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
fileSystems."/boot" = {
|
|
device = "/dev/disk/by-label/boot";
|
|
fsType = "vfat";
|
|
};
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-partlabel/NIXOS";
|
|
fsType = "ext4";
|
|
};
|
|
}
|