From 7befae6dce89f738c9c41e666c15a12165ff837f Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Fri, 8 Sep 2023 09:24:28 -0700 Subject: [PATCH] Fix session script not getting executed --- modules/hyprland/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hyprland/default.nix b/modules/hyprland/default.nix index ba0f635..3b6038f 100644 --- a/modules/hyprland/default.nix +++ b/modules/hyprland/default.nix @@ -2,7 +2,7 @@ inherit (inputs) hyprland hyprpaper hyprland-hy3; wrapper = pkgs.writeShellScriptBin "hyprland" '' - ${impurity.link ./session.sh} + ${builtins.readFile ./session.sh} ${config.hyprland-session.prerun} ${hyprland.packages.${system}.default}/bin/Hyprland $@ '';