🎨 (home/wayland/hyprland) replace exec-once commands by their absolute nix-store path

This commit is contained in:
Laureηt 2023-12-30 20:19:23 +01:00
parent 7bc32c7ea0
commit d410faf3d8
Signed by: Laurent
SSH key fingerprint: SHA256:kZEpW8cMJ54PDeCvOhzreNr4FSh6R13CMGH/POoO8DI

View file

@ -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;
};