hosts/graphical-installer: use latest kernel

This commit is contained in:
Gabriel Arazas 2022-11-29 10:46:14 +08:00
parent 008201c11a
commit 2c8f35500e

View File

@ -6,12 +6,6 @@
(lib.getUser "nixos" "nixos") (lib.getUser "nixos" "nixos")
]; ];
networking.hostName = "graphical-installer";
boot.loader.systemd-boot.enable = true;
boot.supportedFilesystems = lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ];
users.users.root.password = "";
isoImage = { isoImage = {
isoBaseName = config.networking.hostName; isoBaseName = config.networking.hostName;
contents = [{ contents = [{
@ -46,4 +40,15 @@
user = "nixos"; user = "nixos";
}; };
}; };
networking.hostName = "graphical-installer";
boot = {
kernelPackages = pkgs.linuxPackages_latest;
loader.systemd-boot.enable = true;
supportedFilesystems = lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ];
};
users.users.root.password = "";
} }