diff options
Diffstat (limited to 'users/tazjin')
-rw-r--r-- | users/tazjin/nixos/koptevo/default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/users/tazjin/nixos/koptevo/default.nix b/users/tazjin/nixos/koptevo/default.nix index a3eede1c5783..39a4887c725c 100644 --- a/users/tazjin/nixos/koptevo/default.nix +++ b/users/tazjin/nixos/koptevo/default.nix @@ -147,11 +147,14 @@ in }; # hack to work around the strict sandboxing of the gonic module - # breaking DNS resolutino + # breaking DNS resolution systemd.services.gonic.serviceConfig.BindReadOnlyPaths = [ "-/etc/resolv.conf" ]; + # add a hard dependency on the FUSE mount + systemd.services.gonic.requires = [ "geesefs.service" ]; + services.nginx.virtualHosts."music.tazj.in" = { addSSL = true; enableACME = true; |