refactor(wireless): privatize networks

This commit is contained in:
Infinidoge 2023-03-31 12:06:29 -04:00
parent 5c8024d5a6
commit 285c5ad7cc
5 changed files with 16 additions and 20 deletions

View file

@ -1,10 +1,8 @@
{ lib, suites, profiles, ... }: {
{ lib, suites, profiles, private, ... }: {
imports = lib.lists.flatten [
(with suites; [ base develop ])
(with profiles; [
networking.wireless
])
private.nixosModules.wireless
./hardware-configuration.nix
];