modules: remove networking

This commit is contained in:
notohh 2023-12-05 19:44:18 -05:00
parent d26a2de66e
commit b37ae4d476
Signed by: notohh
GPG key ID: BD47506D475EE86D
3 changed files with 2 additions and 6 deletions

View file

@ -8,7 +8,6 @@ name | description
`default` | used for commonly shared modules `default` | used for commonly shared modules
`fonts` | font handling `fonts` | font handling
`greetd` | login manager `greetd` | login manager
`networking` | common network configuration
`nix` | common nix configuration `nix` | common nix configuration
`openssh` | configures openssh options `openssh` | configures openssh options
`security` | stolen from [hlissner](https://github.com/hlissner) `security` | stolen from [hlissner](https://github.com/hlissner)

View file

@ -3,7 +3,6 @@
inputs.nh.nixosModules.default inputs.nh.nixosModules.default
./prometheus ./prometheus
./security.nix ./security.nix
./networking.nix
./users.nix ./users.nix
./nix.nix ./nix.nix
./system.nix ./system.nix
@ -12,4 +11,5 @@
./sops.nix ./sops.nix
./time.nix ./time.nix
]; ];
services.tailscale.enable = true;
} }

View file

@ -1,3 +0,0 @@
_: {
services.tailscale.enable = true;
}