diff options
| author | Dominik Kaiser | 2025-02-16 10:01:22 +0100 |
|---|---|---|
| committer | Dominik Kaiser | 2025-02-16 10:01:22 +0100 |
| commit | abb4d21bb64c697b57b5ca61f83db5096cdcb654 (patch) | |
| tree | d503aef40f047a1b41c41d727b96fb18318095f2 /hosts | |
| parent | 3b1a3018ff1c880981a8ccf87060bf902dae131c (diff) | |
| download | nixos-abb4d21bb64c697b57b5ca61f83db5096cdcb654.tar.gz nixos-abb4d21bb64c697b57b5ca61f83db5096cdcb654.zip | |
Add wifi driver to sol config
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/sol/hardware-configuration.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/hosts/sol/hardware-configuration.nix b/hosts/sol/hardware-configuration.nix index 1933cf0..cd95066 100644 --- a/hosts/sol/hardware-configuration.nix +++ b/hosts/sol/hardware-configuration.nix @@ -10,8 +10,10 @@ boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ]; boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ "kvm-amd" ]; - boot.extraModulePackages = [ ]; + boot.kernelModules = [ "kvm-amd" "88x2bu" ]; + boot.extraModulePackages = with config.boot.kernelPackages;[ + rtl88x2bu + ]; fileSystems."/" = { device = "/dev/disk/by-uuid/1c4a2db2-f006-44cb-be89-617e5e27bc37"; |
