Lots more moves, simplifiactions to options and removed code that peeved me off

This commit is contained in:
Bun 2025-03-18 09:02:34 -04:00
parent 2d2c569705
commit 384e510647
25 changed files with 59 additions and 76 deletions

View file

@ -5,6 +5,7 @@
./earlyoom
./gnome-keyring
./gvfs
./iwd
./keyd
./libvirtd
./portals

View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
environment = lib.mkIf config.networking.wireless.iwd.enable {
systemPackages = with pkgs; [ impala ];
persistence."/persist".directories = [ "/var/lib/iwd/" ];
};
}