about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2018-07-20 13:02:49 +0200
committerProfpatsch <mail@profpatsch.de>2018-07-20 13:02:49 +0200
commit27af1fc10f69909e73df9f3d57d7ea7c5cb9bd7f (patch)
tree88fcfab8b0b78da3f030bd26bd050a29650ca8be /machines
parentc8224ecc88e08b5c23e9f658cad5e155ef12ef56 (diff)
machines/katara: fix dunst invocation
Diffstat (limited to 'machines')
-rw-r--r--machines/profpatsch/katara.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/machines/profpatsch/katara.nix b/machines/profpatsch/katara.nix
index 9338683d..8c5298db 100644
--- a/machines/profpatsch/katara.nix
+++ b/machines/profpatsch/katara.nix
@@ -419,7 +419,7 @@ in {
             BusName = "org.freedesktop.Notifications";
             ExecStart =
               let config = pkgs.writeText "dunst.conf" (lib.generators.toINI {} {});
-              in "${lib.getBin pkgs.dunst}/bin/dunst -config ${config}";
+              in "${lib.getBin pkgs.dunst}/bin/dunst --config ${config}";
             Restart = "on-failure";
           };
           partOf = [ "graphical-session.target" ];