11 lines
220 B
Nix
11 lines
220 B
Nix
{config, ...}:
|
|
{
|
|
boot.loader.grub.enable = assert config.boot.loader.grub.device != ""; true;
|
|
boot.loader.grub.version = 2;
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-label/nixos";
|
|
fsType = "ext4";
|
|
};
|
|
}
|