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 ''; }; }