diff options
| author | Leonardo <noreply@leoflo.me> | 2026-03-11 16:34:05 +0100 |
|---|---|---|
| committer | Leonardo <noreply@leoflo.me> | 2026-03-11 16:34:05 +0100 |
| commit | afc597e552facff6c0103657d315775902709841 (patch) | |
| tree | 75e411a8f5c57491b03f6057776df29ec3594487 /systems/hermes/boot.nix | |
| parent | a7f0310e52a6d7dcfa0d11b7b3e683903ca41cd9 (diff) | |
| download | nixos-afc597e552facff6c0103657d315775902709841.tar.gz nixos-afc597e552facff6c0103657d315775902709841.zip | |
gerarchia modificata (sono pazzo)
Diffstat (limited to 'systems/hermes/boot.nix')
| -rw-r--r-- | systems/hermes/boot.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/systems/hermes/boot.nix b/systems/hermes/boot.nix new file mode 100644 index 0000000..f7ff6b4 --- /dev/null +++ b/systems/hermes/boot.nix @@ -0,0 +1,21 @@ +{pkgs, ...}: { + boot = { + kernelPackages = pkgs.linuxPackages_latest; + kernelModules = [ "kvm-intel" ]; + kernelParams = [ "boot.shell_on_fail" ]; + + initrd = { + availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "sdhci_pci" ]; + kernelModules = [ ]; + }; + + loader = { + timeout = 3; + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + }; + + supportedFilesystems = [ "exfat" "ntfs" ]; + extraModulePackages = [ ]; + }; +} |
