blob: c45ee528f6a2ef2e2313d6e32c72245999e91af7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{ depot, pkgs, ... }:
{
imports = [
(depot.third_party.agenix.src + "/modules/age.nix")
];
age.secrets.geesefs-tazjins-files.file = depot.users.tazjin.secrets."geesefs-tazjins-files.age";
programs.fuse.userAllowOther = true;
systemd.services.geesefs = {
description = "geesefs @ tazjins-files";
wantedBy = [ "multi-user.target" ];
path = [ pkgs.fuse ];
serviceConfig = {
# TODO: can't get fusermount to work for non-root users (e.g. DynamicUser) here, why?
Restart = "always";
LoadCredential = "geesefs-tazjins-files:/run/agenix/geesefs-tazjins-files";
StateDirectory = "geesefs";
ExecStartPre = "/run/wrappers/bin/umount -a -t fuse.geesefs";
};
script = ''
set -u # bail out if systemd is misconfigured ...
set -x
mkdir -p $STATE_DIRECTORY/tazjins-files $STATE_DIRECTORY/cache
${depot.third_party.geesefs}/bin/geesefs \
-f -o allow_other \
--cache $STATE_DIRECTORY/cache \
--shared-config $CREDENTIALS_DIRECTORY/geesefs-tazjins-files \
tazjins-files $STATE_DIRECTORY/tazjins-files
'';
};
}
|