flake.nix: add systemd service user option
This commit is contained in:
parent
a1f947eb50
commit
e4a909478c
1 changed files with 7 additions and 2 deletions
|
@ -65,6 +65,12 @@ Some utility commands:
|
||||||
The ji-chan package that should be used.
|
The ji-chan package that should be used.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
user = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
description = lib.mdDoc ''
|
||||||
|
User account under which ji-chan runs.
|
||||||
|
'';
|
||||||
|
};
|
||||||
domain = lib.mkOption {
|
domain = lib.mkOption {
|
||||||
type = lib.types.str;
|
type = lib.types.str;
|
||||||
default = "tegakituesday.com";
|
default = "tegakituesday.com";
|
||||||
|
@ -107,8 +113,7 @@ Some utility commands:
|
||||||
wantedBy = [ "network.target" ];
|
wantedBy = [ "network.target" ];
|
||||||
serviceConfig = {
|
serviceConfig = {
|
||||||
ExecStart = ''
|
ExecStart = ''
|
||||||
${cfg.package}/bin/ji-chan --domain ${cfg.domain} --token ${cfg.token} --prefix "${builtins.replaceStrings ["\""] ["\\\""] cfg.prefix}" --hugo ${cfg.hugo} --guilds ${cfg.guildData}
|
${ if (cfg.user != null) then "User=${cfg.user}\n" else "" }${cfg.package}/bin/ji-chan --domain ${cfg.domain} --token ${cfg.token} --prefix "${builtins.replaceStrings ["\""] ["\\\""] cfg.prefix}" --hugo ${cfg.hugo} --guilds ${cfg.guildData}'';
|
||||||
'';
|
|
||||||
Restart = "always";
|
Restart = "always";
|
||||||
DynamicUser = true;
|
DynamicUser = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue