hosts/bootstrap: use latest kernel

This commit is contained in:
Gabriel Arazas 2022-11-29 10:38:33 +08:00
parent 071645a48d
commit 008201c11a

View File

@ -17,10 +17,13 @@
] ++ builtins.attrValues inputs;
};
boot = {
kernelPackages = pkgs.linuxPackages_latest;
loader.systemd-boot.enable = true;
supportedFilesystems = lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ];
};
networking.hostName = "bootstrap";
boot.supportedFilesystems = lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ];
users.users.root.password = "";
boot.loader.systemd-boot.enable = true;
}