From 2df5bc584899f427495cc20927170de2a2c84b32 Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Fri, 12 Jun 2026 18:10:16 +0200 Subject: Setup luna --- modules/hosts/luna/hardware.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 modules/hosts/luna/hardware.nix (limited to 'modules/hosts/luna/hardware.nix') diff --git a/modules/hosts/luna/hardware.nix b/modules/hosts/luna/hardware.nix new file mode 100644 index 0000000..8c00011 --- /dev/null +++ b/modules/hosts/luna/hardware.nix @@ -0,0 +1,20 @@ +{ self, inputs, ... }: { + + flake.nixosModules.lunaHardware = { config, lib, pkgs, modulesPath, ... }: + +{ + imports = + [ (modulesPath + "/installer/scan/not-detected.nix") + ]; + + boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ "kvm-intel" ]; + boot.extraModulePackages = [ ]; + + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; +} +; + +} -- cgit v1.2.3