diff options
author | Soispha <soispha@vhack.eu> | 2023-10-03 17:29:00 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-10-03 18:08:45 +0200 |
commit | c154fa39a7f68a17713eff260c45c4d23835feb1 (patch) | |
tree | 723ceae9d305fc0bb4056bf1d521355709654515 /system/impermanence | |
parent | feat(system/services/murmur): Initialize (diff) | |
download | nixos-server-c154fa39a7f68a17713eff260c45c4d23835feb1.tar.gz nixos-server-c154fa39a7f68a17713eff260c45c4d23835feb1.zip |
fix(system/services/murmur): Allow murmur's user to read certs
Diffstat (limited to '')
-rw-r--r-- | system/impermanence/default.nix | 1 | ||||
-rw-r--r-- | system/impermanence/mods/murmur.nix | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/system/impermanence/default.nix b/system/impermanence/default.nix index 6e977b5..f3d792d 100644 --- a/system/impermanence/default.nix +++ b/system/impermanence/default.nix @@ -5,6 +5,7 @@ ./mods/mail.nix ./mods/matrix.nix ./mods/minecraft.nix + ./mods/murmur.nix ./mods/nix-sync.nix ./mods/openssh.nix ./mods/postgresql.nix diff --git a/system/impermanence/mods/murmur.nix b/system/impermanence/mods/murmur.nix new file mode 100644 index 0000000..48912e1 --- /dev/null +++ b/system/impermanence/mods/murmur.nix @@ -0,0 +1,10 @@ +{...}: { + environment.persistence."/srv".directories = [ + { + directory = "/var/lib/murmur"; + user = "murmur"; + group = "murmur"; + mode = "0700"; + } + ]; +} |