fork
Configure Feed
Select the types of activity you want to include in your feed.
Monorepo for Aesthetic.Computer
aesthetic.computer
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ config, pkgs, lib, ... }:
2
3{
4 # Do NOT enable networking.wireless (NixOS-managed wpa_supplicant).
5 # ac-native's wifi.c manages wpa_supplicant directly via system() calls.
6 # We just need the binaries available in PATH.
7 networking.wireless.enable = false;
8
9 # Ensure rfkill doesn't block WiFi
10 boot.kernelModules = [ "rfkill" ];
11
12 # udev rule to unblock WiFi on boot
13 services.udev.extraRules = ''
14 # Unblock WiFi interfaces on hotplug
15 ACTION=="add", SUBSYSTEM=="rfkill", ATTR{type}=="wlan", RUN+="${pkgs.util-linux}/bin/rfkill unblock wifi"
16 '';
17}