From 889d49e1fe28e2f37027d273662ff84f9cc8fc56 Mon Sep 17 00:00:00 2001 From: Cilly Leang Date: Tue, 17 Mar 2026 14:41:18 +1100 Subject: [PATCH] containers/diamond: add systemd-tmpfiles rule --- containers/diamond/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/containers/diamond/configuration.nix b/containers/diamond/configuration.nix index 213738a..7ae4225 100644 --- a/containers/diamond/configuration.nix +++ b/containers/diamond/configuration.nix @@ -1,5 +1,8 @@ { config, lib, ... }: { system.stateVersion = "25.11"; + systemd.tmpfiles.rules = [ + "d /persist/vaultwarden 755 vaultwarden vaultwarden" + ]; networking.firewall.allowedTCPPorts = [ 8000 ]; networking.firewall.allowedUDPPorts = [ 8000 ];