hardware/wireless: add wireless, refactor form

This commit is contained in:
Infinidoge 2021-11-21 13:43:24 -05:00
parent 473fa9a1a7
commit 51c2a9467c
5 changed files with 63 additions and 18 deletions

View file

@ -0,0 +1,11 @@
{ config, lib, ... }:
with lib;
with lib.hlissner;
{
options = { };
config = mkMerge [
{
networking.useDHCP = false;
}
];
}