diff --git a/configs/engiadina.nix b/configs/engiadina.nix index 81a86eb..22f8c27 100644 --- a/configs/engiadina.nix +++ b/configs/engiadina.nix @@ -4,18 +4,13 @@ let cdnRoot = "/run/engiadina"; in { - systemd.tmpfiles.rules = map tmpfilesConfig [ - { - type = "d"; - path = cdnRoot; - mode = "0775"; - user = config.users.users.me.name; - } - { - type = "x"; - path = "${cdnRoot}/*"; - } - ]; + imports = [ ]; + + krebs.permown.${cdnRoot} = { + owner = config.users.users.me.name; + group = "users"; + umask = "0002"; + }; services.nginx = { enable = true;