more hardware and network settings

This commit is contained in:
2026-03-03 00:47:23 +01:00
parent c296dd3415
commit 0634385f81
2 changed files with 8 additions and 0 deletions

7
networking.nix Normal file
View File

@@ -0,0 +1,7 @@
{ ... }: {
flake.nixosModules.network = {lib, hostName, ... }:{
networking.firewall.enable = true;
networking.useDHCP = true;
networking.networkmanager.enable = true;
};
}