From d410faf3d858b3118ea10b82e1880c114447c542 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Sat, 30 Dec 2023 20:19:23 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20(home/wayland/hyprland)=20replac?= =?UTF-8?q?e=20`exec-once`=20commands=20by=20their=20absolute=20nix-store?= =?UTF-8?q?=20path?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/wayland/hyprland/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/home/wayland/hyprland/default.nix b/home/wayland/hyprland/default.nix index ef7740d..862cc4a 100644 --- a/home/wayland/hyprland/default.nix +++ b/home/wayland/hyprland/default.nix @@ -8,12 +8,12 @@ extraConfig = '' - exec-once=env XDG_CACHE_HOME=/tmp eww open bar + exec-once=env XDG_CACHE_HOME=/tmp ${pkgs.eww-wayland}/bin/eww open bar exec-once=${pkgs.swaybg}/bin/swaybg -i ${inputs.wallpaper} - exec-once=mako - exec-once=thunderbird - exec-once=wl-paste --watch cliphist store - exec-once=gnome-keyring-daemon --start --components=secrets + exec-once=${pkgs.mako}/bin/mako + exec-once=${pkgs.thunderbird}/bin/thunderbird + exec-once=${pkgs.wl-clipboard}/bin/wl-paste --watch ${pkgs.cliphist}/bin/cliphist store + exec-once=${pkgs.gnome.gnome-keyring}/bin/gnome-keyring-daemon --start --components=secrets '' + builtins.readFile ./hyprland.conf; };