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,11 +1,10 @@
{ suites, profiles, pkgs, lib, ... }: {
{ suites, profiles, pkgs, lib, private, ... }: {
imports = lib.our.flattenListSet {
suites = with suites; [ base develop ];
imports = [ ./hardware-configuration.nix ];
profiles = with profiles;
[
networking.wireless
];
imports = [
./hardware-configuration.nix
private.nixosModules.wireless
];
};
system.stateVersion = "21.11";