all repos — nixfiles @ 384e7cbb5228574592950e830d7f20567303dc0d

System and user configuration, managed by nix and home-manager

prefect: enable wireless lan via iwd
Alan Pearce alan@alanpearce.eu
Sat, 02 Jul 2022 01:13:58 +0200
commit

384e7cbb5228574592950e830d7f20567303dc0d

parent

650ac301b48112cd2c1b2a445a0b0fabec58d87d

1 files changed, 4 insertions(+), 0 deletions(-)

jump to
M system/prefect.nixsystem/prefect.nix
@@ -16,6 +16,7 @@ ./settings/hardware/personal-computer.nix     ./settings/hardware/bluetooth.nix
     ./settings/hardware/nvme-root.nix
     ./settings/hardware/connman.nix
+    ./settings/hardware/iwd.nix
     ./settings/hardware/mouse.nix
     ./settings/hardware/grub2.nix
     ./settings/hardware/nvidia-gpu.nix
@@ -115,6 +116,9 @@ iptables  -A nixos-fw -p udp --source 172.30.42.0/24       -j nixos-fw-accept     iptables  -A nixos-fw -p tcp --source 172.30.42.0/24       -j nixos-fw-accept
   '';
 
+  hardware.firmware = with pkgs; [
+    linux-firmware # for iwlwifi
+  ];
   networking = {
     hostName = "prefect";
   };