diff options
author | Simon Parri <simonparri@ganzeria.com> | 2025-05-29 22:36:52 -0500 |
---|---|---|
committer | Simon Parri <simonparri@ganzeria.com> | 2025-05-29 22:36:52 -0500 |
commit | 8e10c6b53c3acda15b6091fc8487dd7960d51e28 (patch) | |
tree | cd98107047025db860131afecc909025d468bec3 /hosts/ades | |
parent | 20f72b6cf0125fea266d243361cea021ec66905e (diff) | |
download | nixos-config-8e10c6b53c3acda15b6091fc8487dd7960d51e28.tar.gz nixos-config-8e10c6b53c3acda15b6091fc8487dd7960d51e28.zip |
hosts/ades: put iwlwifi from kernelModules to availableKernelModules
Diffstat (limited to 'hosts/ades')
-rw-r--r-- | hosts/ades/hardware.nix | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hosts/ades/hardware.nix b/hosts/ades/hardware.nix index 4698ae8..c04ac86 100644 --- a/hosts/ades/hardware.nix +++ b/hosts/ades/hardware.nix @@ -1,8 +1,7 @@ { pkgs, ... }: { - boot.initrd.availableKernelModules = []; - boot.initrd.kernelModules = [ + boot.initrd.availableKernelModules = [ "iwlwifi" ]; boot.kernelModules = [ |