21 lines
340 B
Nix
21 lines
340 B
Nix
{ pkgs, ... }:
|
|
{
|
|
boot = {
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
editor = false;
|
|
};
|
|
|
|
timeout = 1;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
initrd.systemd.enable = true;
|
|
kernelPackages = pkgs.linuxPackages_latest;
|
|
supportedFilesystems = [
|
|
"btrfs"
|
|
"ntfs"
|
|
];
|
|
};
|
|
}
|