Compare commits

...

2 Commits

Author SHA1 Message Date
Bernardo Magri
1184cad61a fix: exclude ported apps from XDG auto-mapping to avoid collisions 2026-04-07 18:59:45 +01:00
Bernardo Magri
3ff6815ab0 refactor: rename Hyprland entrypoint to nomarchy.conf and finalize config sourcing 2026-04-07 18:57:21 +01:00
3 changed files with 15 additions and 2 deletions

View File

@@ -15,6 +15,10 @@ let
# Files to explicitly exclude (handled elsewhere or not intended for ~/.config/) # Files to explicitly exclude (handled elsewhere or not intended for ~/.config/)
excludedFiles = [ excludedFiles = [
"nomarchy.ttf" "nomarchy.ttf"
"waybar"
"walker"
"alacritty"
"swayosd"
]; ];
# Get all unique names from both sources # Get all unique names from both sources
@@ -38,5 +42,14 @@ let
in in
{ {
xdg.configFile = builtins.listToAttrs (map makeMapping validEntries); xdg.configFile = (builtins.listToAttrs (map makeMapping validEntries)) // {
"nomarchy" = {
source = ../../config/nomarchy;
recursive = true;
};
"hypr" = {
source = ../../config/hypr;
recursive = true;
};
};
} }

View File

@@ -31,7 +31,7 @@ in
}; };
}; };
extraConfig = '' extraConfig = ''
source = ~/.config/hypr/hyprland.conf source = ~/.config/hypr/nomarchy.conf
''; '';
}; };
} }