about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorMichele Guerini Rocco <rnhmjoj@users.noreply.github.com>2021-11-28 16:54:21 +0100
committerGitHub <noreply@github.com>2021-11-28 16:54:21 +0100
commitaf63e81ad9cc8326d235ee9bd555b1357d8b761d (patch)
tree09f405be744391b1b80ed693c4dcc137b09ddcac /nixos/modules
parent5ce7574ce8555bb39d2362e10d063359b92b75ec (diff)
parent97a3b2af1dc0a781f6a5886b536628d374c65c4b (diff)
downloadnixlib-af63e81ad9cc8326d235ee9bd555b1357d8b761d.tar
nixlib-af63e81ad9cc8326d235ee9bd555b1357d8b761d.tar.gz
nixlib-af63e81ad9cc8326d235ee9bd555b1357d8b761d.tar.bz2
nixlib-af63e81ad9cc8326d235ee9bd555b1357d8b761d.tar.lz
nixlib-af63e81ad9cc8326d235ee9bd555b1357d8b761d.tar.xz
nixlib-af63e81ad9cc8326d235ee9bd555b1357d8b761d.tar.zst
nixlib-af63e81ad9cc8326d235ee9bd555b1357d8b761d.zip
Merge pull request #147683 from rnhmjoj/pr-monero-cli
monero: rename to monero-cli
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/networking/monero.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/monero.nix b/nixos/modules/services/networking/monero.nix
index 9a9084e4ce1a..8bed89917c85 100644
--- a/nixos/modules/services/networking/monero.nix
+++ b/nixos/modules/services/networking/monero.nix
@@ -222,7 +222,7 @@ in
       serviceConfig = {
         User  = "monero";
         Group = "monero";
-        ExecStart = "${pkgs.monero}/bin/monerod --config-file=${configFile} --non-interactive";
+        ExecStart = "${pkgs.monero-cli}/bin/monerod --config-file=${configFile} --non-interactive";
         Restart = "always";
         SuccessExitStatus = [ 0 1 ];
       };