benzaiten enable facter

This commit is contained in:
Johannes Jöns 2024-11-07 00:48:52 +01:00
parent 0e84f63c86
commit bfc36c2faa
2 changed files with 2 additions and 26 deletions

View file

@ -14,6 +14,8 @@
nixos-hardware.nixosModules.common-pc-laptop-hdd
];
facter.reportPath = ./facter.json;
jopejoe1 = {
audio = {
enable = true;

View file

@ -1,38 +1,12 @@
{
config,
lib,
modulesPath,
...
}:
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
boot.initrd.availableKernelModules = [
"xhci_pci"
"ehci_pci"
"ahci"
"usb_storage"
"sd_mod"
"sr_mod"
"sdhci_pci"
"rtsx_pci_sdmmc"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [
"kvm-intel"
"coretemp"
];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/1cae8f88-5db6-4c97-88e4-350c35275d5c";
fsType = "ext4";
};
swapDevices = [ { device = "/dev/disk/by-uuid/8569ee66-b939-4ce8-a94a-dca7df5e301b"; } ];
networking.useDHCP = lib.mkDefault true;
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}