about summary refs log tree commit diff
path: root/nixos
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 /nixos
parent798931135e7bb3f4b975a391656c176fc063f558 (diff)
downloadnixlib-60481ba3fddca5d58b05dcef43d63408387f90dd.tar
nixlib-60481ba3fddca5d58b05dcef43d63408387f90dd.tar.gz
nixlib-60481ba3fddca5d58b05dcef43d63408387f90dd.tar.bz2
nixlib-60481ba3fddca5d58b05dcef43d63408387f90dd.tar.lz
nixlib-60481ba3fddca5d58b05dcef43d63408387f90dd.tar.xz
nixlib-60481ba3fddca5d58b05dcef43d63408387f90dd.tar.zst
nixlib-60481ba3fddca5d58b05dcef43d63408387f90dd.zip
nixos/hologram-agent: /var/run -> /run
Diffstat (limited to 'nixos')
-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 39ed506f7617..a5087b0a99b4 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}";