fixed the directory

This commit is contained in:
kenji
2025-12-12 11:34:02 -06:00
parent 5535d43146
commit 3c32424793
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -48,7 +48,7 @@ in {
# 1. Map the individual scripts with executable = true
(
lib.genAttrs
(map (name: ".config/hypr/scripts/${name}") scripts)
(map (name: ".config/hypr/hyprland/scripts/${name}") scripts)
(path: {
source = "${scriptDir}/${builtins.baseNameOf path}";
executable = true;
@@ -56,7 +56,7 @@ in {
)
# 2. Add the 'ai' directory separately (cannot use executable=true on dirs)
// {
".config/hypr/scripts/ai".source = "${scriptDir}/ai";
".config/hypr/hyprland/scripts/ai".source = "${scriptDir}/ai";
}
))