Simplify boardwise systemd config.

main
Joshua Potter 2023-12-08 17:36:33 -07:00
parent 498aa3b51e
commit ec676fbfbe
2 changed files with 15 additions and 27 deletions

View File

@ -208,7 +208,7 @@
},
"locked": {
"lastModified": 1,
"narHash": "sha256-Gze86YwZxMbiW01weBEoPXyNEdAuj+hBTtT/shr/wSo=",
"narHash": "sha256-12GAm+zOFk5V1yHAV/LeBvV/kLqE9Cz9WeCSEZbimxQ=",
"path": "./phobos",
"type": "path"
},

View File

@ -38,8 +38,7 @@
'';
};
systemd = {
services.boardwise = {
systemd.services.boardwise = {
enable = true;
description = "BoardWise Server";
after = [ "postgresql.service" ];
@ -54,17 +53,6 @@
ExecStart = "${boardwise.packages.${system}.app}/bin/boardwise start";
Restart = "on-failure";
};
unitConfig = {
ConditionPathExists = "/run/secrets/SECRET_KEY_BASE";
};
};
paths.SECRET_KEY_BASE = {
enable = true;
pathConfig = {
PathExists = "/run/secrets/SECRET_KEY_BASE";
Unit = "boardwise.service";
};
};
};
sops.defaultSopsFile = ./secrets.yaml;