refactor: rename Hyprland entrypoint to nomarchy.conf and finalize config sourcing

This commit is contained in:
Bernardo Magri
2026-04-07 18:57:21 +01:00
parent 98b7c99023
commit 3ff6815ab0
3 changed files with 11 additions and 2 deletions

View File

@@ -38,5 +38,14 @@ let
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 = ''
source = ~/.config/hypr/hyprland.conf
source = ~/.config/hypr/nomarchy.conf
'';
};
}