mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
namecoind nixos module: fix environment variable
This commit is contained in:
parent
b6fb760484
commit
cb4bea5f97
@ -115,7 +115,7 @@ in
|
|||||||
Type = "simple";
|
Type = "simple";
|
||||||
User = "namecoin";
|
User = "namecoin";
|
||||||
EnvironmentFile = cfg.userFile;
|
EnvironmentFile = cfg.userFile;
|
||||||
ExecStart = "${pkgs.altcoins.namecoind}/bin/namecoind -conf=${namecoinConf} -rpcuser=$USER -rpcpassword=$PASSWORD -printtoconsole";
|
ExecStart = "${pkgs.altcoins.namecoind}/bin/namecoind -conf=${namecoinConf} -rpcuser=\${USER} -rpcpassword=\${PASSWORD} -printtoconsole";
|
||||||
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
||||||
ExecStop = "${pkgs.coreutils}/bin/kill -KILL $MAINPID";
|
ExecStop = "${pkgs.coreutils}/bin/kill -KILL $MAINPID";
|
||||||
StandardOutput = "null";
|
StandardOutput = "null";
|
||||||
|
Loading…
Reference in New Issue
Block a user