From 4011185682fb788ae8b327190cfbe0e92a7e4731 Mon Sep 17 00:00:00 2001 From: GaspardCulis Date: Sun, 22 Sep 2024 10:03:11 +0200 Subject: [PATCH] fix(hypr): Fixed `gamemode.sh` script not being linked executable --- de/hypr/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/de/hypr/default.nix b/de/hypr/default.nix index f464e34..276eebb 100644 --- a/de/hypr/default.nix +++ b/de/hypr/default.nix @@ -5,7 +5,11 @@ }: { home.file = { ".config/hypr/hyprland.conf.d".source = ./hyprland.conf.d; - ".config/hypr/gamemode.sh".source = ./gamemode.sh; + # Gamemode script + ".config/hypr/gamemode.sh" = { + source = ./gamemode.sh; + executable = true; + }; # Hyprland launch wrapper ".local/bin/Hyprland" = { source = ../../bin/Hyprland;