13 lines
270 B
Nix
13 lines
270 B
Nix
_: {
|
|
imports = [ ./filesystem.nix ./kernel.nix ];
|
|
|
|
hardware.enableRedistributableFirmware = true;
|
|
|
|
boot = {
|
|
loader = {
|
|
efi.canTouchEfiVariables = true;
|
|
systemd-boot.enable = true;
|
|
};
|
|
supportedFilesystems = [ "vfat" "btrfs" "ext4" ];
|
|
};
|
|
}
|