remove "parts" directory and restructure modules

This commit is contained in:
2025-10-01 19:36:53 +02:00
parent 4b26b8da52
commit f2cf7d36de
19 changed files with 77 additions and 117 deletions

11
modules/tailscale.nix Normal file
View File

@@ -0,0 +1,11 @@
{ config, ... }:
{
networking.firewall = {
trustedInterfaces = [ config.services.tailscale.interfaceName ];
};
services.tailscale = {
enable = true;
openFirewall = true;
};
}