Working config for fw13 amd

This commit is contained in:
Jurn Wubben 2025-02-14 19:40:27 +00:00
commit e706230566
48 changed files with 1812 additions and 0 deletions

33
system/core/boot.nix Normal file
View file

@ -0,0 +1,33 @@
{
pkgs,
config,
...
}: {
boot = {
bootspec.enable = true;
initrd = {
systemd.enable = true;
supportedFilesystems = ["ext4"];
};
# use latest kernel
kernelPackages = pkgs.linuxPackages_latest;
consoleLogLevel = 3;
kernelParams = [
"quiet"
"systemd.show_status=auto"
"rd.udev.log_level=3"
"plymouth.use-simpledrm"
];
loader = {
# systemd-boot on UEFI
efi.canTouchEfiVariables = true;
systemd-boot.enable = true;
};
plymouth.enable = true;
};
}