tangled
alpha
login
or
join now
dunkirk.sh
/
dots
3
fork
atom
Kieran's opinionated (and probably slightly dumb) nix config
3
fork
atom
overview
issues
pulls
pipelines
bug: fix the strict protection breaking prestart
dunkirk.sh
1 week ago
d4d87677
399b9012
verified
This commit was signed with the committer's
known signature
.
dunkirk.sh
SSH Key Fingerprint:
SHA256:DqcG0RXYExE26KiWo3VxJnsxswN1QNfTBvB+bdSpk80=
+1
1 changed file
expand all
collapse all
unified
split
modules
lib
mkService.nix
+1
modules/lib/mkService.nix
···
257
# Security hardening
258
NoNewPrivileges = true;
259
ProtectSystem = "strict";
0
260
ProtectHome = true;
261
PrivateTmp = true;
262
···
257
# Security hardening
258
NoNewPrivileges = true;
259
ProtectSystem = "strict";
260
+
ReadWritePaths = [ cfg.dataDir ];
261
ProtectHome = true;
262
PrivateTmp = true;
263