networking: move private networking from flake to module

This commit is contained in:
Infinidoge 2023-07-30 00:33:21 -04:00
parent ee36b2f873
commit b2eba2b8c2
2 changed files with 3 additions and 2 deletions

View file

@ -148,7 +148,6 @@
# --- Universe Modules ---
./secrets
private.nixosModules.networking
# --- Library Modules ---
inputs.nixos-wsl.nixosModules.wsl

View file

@ -1,5 +1,7 @@
{ pkgs, config, ... }:
{ pkgs, config, private, ... }:
{
imports = [ private.nixosModules.networking ];
networking = {
useDHCP = true;
firewall = {