diff options
author | Mihai Fufezan <[email protected]> | 2022-11-03 13:21:49 +0200 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2022-11-03 13:21:51 +0200 |
commit | f978368a4ef65d5af3de5d2fc56b72085fb5a8b8 (patch) | |
tree | 3f1c35e0d87ca90f4bbd0d3afa6b8ca50b208314 /nix | |
parent | c47581fc5aedcff172b76b658593a1e7c712e448 (diff) | |
download | Hyprland-f978368a4ef65d5af3de5d2fc56b72085fb5a8b8.tar.gz Hyprland-f978368a4ef65d5af3de5d2fc56b72085fb5a8b8.zip |
Nix HM: Fix invalid escapes
Fixes #949
Diffstat (limited to 'nix')
-rw-r--r-- | nix/hm-module.nix | 4 |
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; |