blob: 1e419b823565b465e30779f050ab42341b528874 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
{
config,
lib,
...
}: let
cfg = config.vhack.rocie;
data = "/var/lib/rocie";
in {
options.vhack.rocie = {
enable = lib.mkEnableOption "Rocie integration into vhack.eu";
domain = lib.mkOption {
type = lib.types.str;
description = "The domain where to deploy rocie";
};
loginSecret = lib.mkOption {
type = lib.types.path;
description = "The age encrypted secret file for rocie, passed to agenix";
};
};
config = lib.mkIf cfg.enable {
rocie = {
enable = true;
inherit (cfg) domain;
dbPath = "${data}/database.db";
secretKeyFile = config.age.secrets.rocie_secret.path;
};
vhack.persist.directories = [
{
directory = data;
user = "rocie";
group = "rocie";
mode = "0700";
}
];
users = {
groups.rocie = {
gid = config.vhack.constants.ids.gids.rocie;
};
users.rocie = {
group = "rocie";
uid = config.vhack.constants.ids.uids.rocie;
};
};
age.secrets.rocie_secret = {
file = cfg.loginSecret;
mode = "700";
owner = "rocie";
group = "rocie";
};
};
}
|