This commit is contained in:
mjallen18
2025-02-26 16:08:49 -06:00
parent 491eb5d0f2
commit 32928928b0
2 changed files with 39 additions and 2 deletions

View File

@@ -0,0 +1,39 @@
{ lib, pkgs, ... }:
let
kernel = pkgs.linuxPackages_latest;
in
{
# Configure bootloader with lanzaboot and secureboot
boot = {
kernelModules = [ "nct6775" ];
loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
};
initrd = {
verbose = false;
systemd.enable = true;
};
plymouth = {
enable = true;
};
kernelPackages = kernel;
kernelParams = [
"quiet"
"splash"
];
consoleLogLevel = 3;
bootspec.enable = true;
};
environment.systemPackages = with pkgs; [
edk2-uefi-shell
];
}

View File

@@ -19,8 +19,6 @@ in
./boot.nix
./hardware-configuration.nix
./impermanence.nix
# ./sops.nix
# ./ups-monitor.nix
../default.nix
];