move networking files around

This commit is contained in:
Kopatz
2023-10-27 10:27:33 +02:00
parent 1adf74796d
commit 9f18da2782
4 changed files with 4 additions and 4 deletions

View File

@@ -20,9 +20,6 @@ in{
networking.hostName = "server"; # Define your hostname.
# Enable networking
#networking.networkmanager.enable = true;
# Set your time zone.
time.timeZone = "Europe/Vienna";

View File

@@ -9,7 +9,7 @@
nixosConfigurations.server = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./modules/ip-server.nix
./modules/static-ip-server.nix
./configuration.nix
./modules/nix-settings.nix
./modules/adguard.nix

View File

@@ -0,0 +1,3 @@
{
networking.networkmanager.enable = true;
}