From 3ff6815ab0b26a99427b264746c76151f13a587a Mon Sep 17 00:00:00 2001 From: Bernardo Magri Date: Tue, 7 Apr 2026 18:57:21 +0100 Subject: [PATCH] refactor: rename Hyprland entrypoint to nomarchy.conf and finalize config sourcing --- config/hypr/{hyprland.conf => nomarchy.conf} | 0 modules/home/configs.nix | 11 ++++++++++- modules/home/hyprland.nix | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) rename config/hypr/{hyprland.conf => nomarchy.conf} (100%) diff --git a/config/hypr/hyprland.conf b/config/hypr/nomarchy.conf similarity index 100% rename from config/hypr/hyprland.conf rename to config/hypr/nomarchy.conf diff --git a/modules/home/configs.nix b/modules/home/configs.nix index 4dc2122..b28c0a6 100644 --- a/modules/home/configs.nix +++ b/modules/home/configs.nix @@ -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; + }; + }; } diff --git a/modules/home/hyprland.nix b/modules/home/hyprland.nix index 28623a6..af4fe93 100644 --- a/modules/home/hyprland.nix +++ b/modules/home/hyprland.nix @@ -31,7 +31,7 @@ in }; }; extraConfig = '' - source = ~/.config/hypr/hyprland.conf + source = ~/.config/hypr/nomarchy.conf ''; }; }