23 lines
461 B
Nix
23 lines
461 B
Nix
{ pkgs, ... }:
|
|
{
|
|
boot = {
|
|
loader = {
|
|
systemd-boot = {
|
|
enable = true;
|
|
editor = false;
|
|
};
|
|
|
|
timeout = 1;
|
|
efi.canTouchEfiVariables = true;
|
|
};
|
|
initrd.systemd.enable = true;
|
|
# FIXME: https://github.com/NixOS/nixpkgs/issues/357643
|
|
# kernelPackages = pkgs.linuxPackages_latest;
|
|
kernelPackages = pkgs.linuxKernel.packages.linux_6_11;
|
|
supportedFilesystems = [
|
|
"btrfs"
|
|
"ntfs"
|
|
];
|
|
};
|
|
}
|