hestia: init

This commit is contained in:
Infinidoge 2024-11-23 09:42:19 -05:00
parent 7a5300b6a2
commit a30f8b19a6
No known key found for this signature in database
4 changed files with 77 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ lib, modulesPath, ... }:
{
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
boot.kernelParams = [ "boot.shell_on_fail" ];
boot.supportedFilesystems = [ "btrfs" "zfs" ];
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
info.model = "Dell R330";
}