15 lines
398 B
Nix
15 lines
398 B
Nix
{ config, lib, pkgs, modulesPath, ... }: {
|
|
imports = [];
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000000";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
fileSystems."/boot" = {
|
|
device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000001";
|
|
fsType = "vfat";
|
|
};
|
|
}
|