networking

This commit is contained in:
mjallen18
2025-03-20 21:32:22 -05:00
parent 3714518ead
commit 79901a9f60
4 changed files with 87 additions and 23 deletions

View File

@@ -8,7 +8,10 @@ in
{
# Configure bootloader with lanzaboot and secureboot
boot = {
kernelModules = [ "nct6775" ];
kernelModules = [
"nct6775"
"kvm-amd"
];
loader = {
efi = {
canTouchEfiVariables = true;
@@ -19,6 +22,15 @@ in
initrd = {
verbose = false;
systemd.enable = true;
availableKernelModules = [
"xhci_pci"
"nvme"
"ahci"
"usbhid"
"uas"
"usb_storage"
"sd_mod"
];
};
plymouth = {
@@ -29,7 +41,7 @@ in
enable = true;
pkiBundle = "/etc/secureboot";
settings = {
# default = default;
# default = default;
console-mode = "max";
};
configurationLimit = configLimit;
@@ -48,7 +60,7 @@ in
bootspec.enable = true;
};
environment.systemPackages = with pkgsVersion; [
environment.systemPackages = with pkgsVersion; [
edk2-uefi-shell
];
];
}