Modularize custom network options, to allow EduRoam wifi to work on select devices

This commit is contained in:
Bun 2025-05-05 14:05:08 -04:00
parent f619a0e069
commit d9e30cd69e
5 changed files with 27 additions and 13 deletions

View file

@ -0,0 +1,7 @@
{ config, ... }:
{
networking.wireless = {
enable = config.system.desktop.enable;
userControlled.enable = true;
};
}