Formatted

This commit is contained in:
rasmus-kirk
2024-03-12 23:42:48 +01:00
parent 54cfc9f73b
commit 712dc3728e
18 changed files with 503 additions and 540 deletions
+7 -2
View File
@@ -26,7 +26,7 @@ in {
**Warning:** Setting this to any path, where the subpath is not
owned by root, will fail! For example:
```nix
stateDir = /home/user/nixarr/.state/sonarr
```
@@ -82,7 +82,12 @@ in {
# Port mappings
vpnnamespaces.wg = mkIf cfg.vpn.enable {
portMappings = [{ from = defaultPort; to = defaultPort; }];
portMappings = [
{
from = defaultPort;
to = defaultPort;
}
];
};
services.nginx = mkIf cfg.vpn.enable {