-
Notifications
You must be signed in to change notification settings - Fork 0
/
nixosModules.nix
218 lines (197 loc) · 7.03 KB
/
nixosModules.nix
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
parts: rec {
flake.nixosModules = let
filestash = "filestash";
in {
default = flake.nixosModules.${filestash};
${filestash} = {
options,
config,
lib,
pkgs,
...
}: let
opts = options.services.${filestash};
cfg = config.services.${filestash};
in {
options.services.${filestash} = with lib; {
enable = mkEnableOption filestash;
package = mkOption {
type = types.package;
default = pkgs.${filestash} or parts.config.flake.packages.${pkgs.system}.default;
};
paths = {
config = mkOption {
type = types.path;
default = "/run/${filestash}/config.json";
};
db = mkOption {
type = types.path;
default = "/var/lib/${filestash}/db";
};
cert = mkOption {
type = types.path;
default = "/var/lib/${filestash}/cert";
};
log = mkOption {
type = types.path;
default = "/var/log/${filestash}";
};
search = mkOption {
type = types.path;
default = "/var/cache/${filestash}/search";
};
tmp = mkOption {
type = types.path;
default = "/var/cache/${filestash}";
};
};
user = mkOption {
type = types.str;
default = filestash;
};
group = mkOption {
type = types.str;
default = filestash;
};
settings = mkOption {
type = types.submodule {
freeformType = with types; attrsOf anything;
options = {
general.secret_key_file = mkOption {
type = with types; nullOr path;
default = null;
description = lib.mdDoc ''
The secret key in the config file will be replaced
with the contents of this file before start.
Only works if `paths.config` is its default value.
'';
};
features.api.api_key_file = mkOption {
type = with types; nullOr path;
default = null;
description = lib.mdDoc ''
The API key in the config file will be replaced
with the contents of this file before start.
Only works if `paths.config` is its default value.
'';
};
auth.admin_file = mkOption {
type = with types; nullOr path;
default = null;
description = lib.mdDoc ''
The admin password in the config file will be replaced
with the contents of this file before start.
Only works if `paths.config` is its default value.
'';
};
connections = mkOption {
type = types.listOf (
types.submodule {
freeformType = with types; attrsOf anything;
options.password_file = mkOption {
type = with types; nullOr path;
default = null;
description = lib.mdDoc ''
The conection password in the config file will be replaced
with the contents of this file before start.
Only works if `paths.config` is its default value.
'';
};
}
);
default = [];
};
};
};
};
};
config = lib.mkIf cfg.enable {
# seems to be broken and logs ffmpeg errors on the backend
services.filestash.settings.features.video.enable_transcoder = lib.mkDefault false;
systemd.services.${filestash} = {
description = "Filestash";
wantedBy = ["multi-user.target"];
after = ["network.target"];
restartTriggers = with cfg;
map builtins.toJSON [
settings
paths
];
serviceConfig = {
User = cfg.user;
Group = cfg.group;
ConfigurationDirectory = filestash;
StateDirectory = filestash;
CacheDirectory = filestash;
LogsDirectory = filestash;
RuntimeDirectory = filestash;
ExecStart = lib.getExe (cfg.package.overrideAttrs (_: {
pathConfig = cfg.paths.config;
pathDb = cfg.paths.db;
pathLog = cfg.paths.log;
pathSearch = cfg.paths.search;
pathCert = cfg.paths.cert;
pathTmp = cfg.paths.tmp;
}));
};
preStart = let
replaceSecret = file: path:
lib.optionalString (file != null) ''
< ${lib.escapeShellArg file} \
${lib.getExe' pkgs.jq "jq"} --raw-input \
--slurpfile config "$RUNTIME_DIRECTORY"/config.json \
'
. as $secret |
$config[] |
${path} = $secret
' \
> "$RUNTIME_DIRECTORY"/config-secret.json
mv "$RUNTIME_DIRECTORY"/config{-secret,}.json
'';
in
''
mkdir --parents ${with cfg.paths; lib.escapeShellArgs [db log search tmp]}
''
+ lib.optionalString (cfg.paths.config == opts.paths.config.default) ''
cp "$CONFIGURATION_DIRECTORY"/config.json "$RUNTIME_DIRECTORY"/config.json
${replaceSecret cfg.settings.general.secret_key_file or null ".general.secret_key"}
${replaceSecret cfg.settings.features.api.api_key_file or null ".features.api.api_key"}
${replaceSecret cfg.settings.auth.admin_file or null ".auth.admin"}
${toString (
lib.imap0
(i: v: replaceSecret v.password_file ".connections[${toString i}].password")
cfg.settings.connections
)}
'';
};
environment.etc."${filestash}/config.json" = {
inherit (cfg) user group;
text = lib.generators.toJSON {} (
cfg.settings
// {
general = removeAttrs cfg.settings.general ["secret_key_file"];
features = removeAttrs cfg.settings.features ["api_key_file"];
auth = removeAttrs cfg.settings.auth ["admin_file"];
connections =
map
(v: removeAttrs v ["password_file"])
cfg.settings.connections;
}
);
};
users = {
users = lib.mkIf (cfg.user == filestash) {
${filestash} = {
isSystemUser = true;
inherit (cfg) group;
home = "/var/lib/${filestash}";
};
};
groups = lib.mkIf (cfg.group == filestash) {
${filestash} = {};
};
};
};
};
};
}