aboutsummaryrefslogtreecommitdiffhomepage
path: root/nix
diff options
context:
space:
mode:
authorMihai Fufezan <[email protected]>2022-11-03 13:21:49 +0200
committerMihai Fufezan <[email protected]>2022-11-03 13:21:51 +0200
commitf978368a4ef65d5af3de5d2fc56b72085fb5a8b8 (patch)
tree3f1c35e0d87ca90f4bbd0d3afa6b8ca50b208314 /nix
parentc47581fc5aedcff172b76b658593a1e7c712e448 (diff)
downloadHyprland-f978368a4ef65d5af3de5d2fc56b72085fb5a8b8.tar.gz
Hyprland-f978368a4ef65d5af3de5d2fc56b72085fb5a8b8.zip
Nix HM: Fix invalid escapes
Fixes #949
Diffstat (limited to 'nix')
-rw-r--r--nix/hm-module.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/nix/hm-module.nix b/nix/hm-module.nix
index 7b2af275..d8ac2be2 100644
--- a/nix/hm-module.nix
+++ b/nix/hm-module.nix
@@ -102,9 +102,7 @@ in {
xdg.configFile."hypr/hyprland.conf" = {
text =
(lib.optionalString cfg.systemdIntegration ''
- exec-once=${pkgs.dbus}/bin/dbus-update-activation-environment --systemd \
- DISPLAY WAYLAND_DISPLAY HYPRLAND_INSTANCE_SIGNATURE XDG_CURRENT_DESKTOP && \
- systemctl --user start hyprland-session.target
+ exec-once=${pkgs.dbus}/bin/dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY HYPRLAND_INSTANCE_SIGNATURE XDG_CURRENT_DESKTOP && systemctl --user start hyprland-session.target
'')
+ cfg.extraConfig;