From e0d803ff209ea7ccae7e06edb8185a14af8bdba8 Mon Sep 17 00:00:00 2001 From: autumn Date: Sun, 23 Nov 2025 10:24:49 -0700 Subject: [PATCH] small fix --- flake.nix | 2 +- system/yukigekko/hardware-configuration.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 6506f8a..a87d05e 100644 --- a/flake.nix +++ b/flake.nix @@ -98,7 +98,7 @@ specialArgs = specialArgs; modules = [ ./system/hoardfrost/configuration.nix - ] + ]; }; "wsl-hive" = nixpkgs.lib.nixosSystem{ specialArgs = specialArgs; diff --git a/system/yukigekko/hardware-configuration.nix b/system/yukigekko/hardware-configuration.nix index dbf7f31..70382ce 100644 --- a/system/yukigekko/hardware-configuration.nix +++ b/system/yukigekko/hardware-configuration.nix @@ -8,7 +8,7 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" "sr_mod" "rtsx_pci_sdmmc" ]; + boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; @@ -33,7 +33,7 @@ networking.useDHCP = lib.mkDefault true; # networking.interfaces.enp3s0f1.useDHCP = lib.mkDefault true; # networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true; - hardware.bluetooth.enable = true; + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }