From b37ae4d4761ee96bfbf84e697182b58d47aac1bf Mon Sep 17 00:00:00 2001 From: notohh Date: Tue, 5 Dec 2023 19:44:18 -0500 Subject: [PATCH] modules: remove networking --- modules/README.md | 3 +-- modules/default.nix | 2 +- modules/networking.nix | 3 --- 3 files changed, 2 insertions(+), 6 deletions(-) delete mode 100644 modules/networking.nix diff --git a/modules/README.md b/modules/README.md index c4f8f7f..71b579a 100644 --- a/modules/README.md +++ b/modules/README.md @@ -8,7 +8,6 @@ name | description `default` | used for commonly shared modules `fonts` | font handling `greetd` | login manager -`networking` | common network configuration `nix` | common nix configuration `openssh` | configures openssh options `security` | stolen from [hlissner](https://github.com/hlissner) @@ -17,4 +16,4 @@ name | description `system` | commonly shared system settings `time` | force sets the time on all systems `users` | defines all hosts users & groups -`virtualisation`| basic docker configuration \ No newline at end of file +`virtualisation`| basic docker configuration diff --git a/modules/default.nix b/modules/default.nix index 11dae0c..bacce58 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -3,7 +3,6 @@ inputs.nh.nixosModules.default ./prometheus ./security.nix - ./networking.nix ./users.nix ./nix.nix ./system.nix @@ -12,4 +11,5 @@ ./sops.nix ./time.nix ]; + services.tailscale.enable = true; } diff --git a/modules/networking.nix b/modules/networking.nix deleted file mode 100644 index d2018e2..0000000 --- a/modules/networking.nix +++ /dev/null @@ -1,3 +0,0 @@ -_: { - services.tailscale.enable = true; -}