about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBob van der Linden <bobvanderlinden@gmail.com>2018-12-19 22:41:49 +0100
committerBob van der Linden <bobvanderlinden@gmail.com>2019-03-24 21:15:30 +0100
commit60481ba3fddca5d58b05dcef43d63408387f90dd (patch)
tree5cba2a688ff306160e70299d933e98348a3d33f8
parent798931135e7bb3f4b975a391656c176fc063f558 (diff)
nixos/hologram-agent: /var/run -> /run
-rw-r--r--nixos/modules/services/security/hologram-agent.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/security/hologram-agent.nix b/nixos/modules/services/security/hologram-agent.nix
index 39ed506f76176..a5087b0a99b45 100644
--- a/nixos/modules/services/security/hologram-agent.nix
+++ b/nixos/modules/services/security/hologram-agent.nix
@@ -45,7 +45,7 @@ in {
       wantedBy    = [ "multi-user.target" ];
       requires    = [ "network-link-dummy0.service" "network-addresses-dummy0.service" ]; 
       preStart = ''
-        /run/current-system/sw/bin/rm -fv /var/run/hologram.sock
+        /run/current-system/sw/bin/rm -fv /run/hologram.sock
       '';
       serviceConfig = {
         ExecStart = "${pkgs.hologram.bin}/bin/hologram-agent -debug -conf ${cfgFile} -port ${cfg.httpPort}";