Regenerated

This commit is contained in:
2026-03-30 00:18:02 +00:00
parent 910875e446
commit d56d23ad37
3 changed files with 297 additions and 297 deletions
+291 -291
View File
File diff suppressed because it is too large Load Diff
+3 -3
View File
@@ -1829,17 +1829,17 @@ let
pkgs.hyprland-git or
inputs.hyprland.packages.${pkgs.system}.default;
# Function to recursively gather files as Home Manager entries
# Recursively gather files as Home Manager entries
gatherFiles = dir:
let
entries = builtins.attrNames (builtins.readDir dir);
files = lib.concatMap (e:
let
path = "${dir}/${e}";
in if builtins.pathExists path && builtins.pathInfo path.type == "directory"
in if builtins.pathInfo path.type == "directory"
then gatherFiles path
else [{
name = ".config/hypr/${builtins.replaceStrings [ assetPath + "/" ] [ "" ] path}";
name = ".config/hypr/${builtins.replaceStrings [ "${assetPath}/" ] [ "" ] path}";
value = { source = path; };
}]
) entries;
@@ -9,17 +9,17 @@ let
pkgs.hyprland-git or
inputs.hyprland.packages.${pkgs.system}.default;
# Function to recursively gather files as Home Manager entries
# Recursively gather files as Home Manager entries
gatherFiles = dir:
let
entries = builtins.attrNames (builtins.readDir dir);
files = lib.concatMap (e:
let
path = "${dir}/${e}";
in if builtins.pathExists path && builtins.pathInfo path.type == "directory"
in if builtins.pathInfo path.type == "directory"
then gatherFiles path
else [{
name = ".config/hypr/${builtins.replaceStrings [ assetPath + "/" ] [ "" ] path}";
name = ".config/hypr/${builtins.replaceStrings [ "${assetPath}/" ] [ "" ] path}";
value = { source = path; };
}]
) entries;