From f978368a4ef65d5af3de5d2fc56b72085fb5a8b8 Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Thu, 3 Nov 2022 13:21:49 +0200 Subject: [PATCH] Nix HM: Fix invalid escapes Fixes #949 --- nix/hm-module.nix | 4 +--- 1 file changed, 1 insertion(+), 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;