diff --git a/modules/gui/hyprland.nix b/modules/gui/hyprland.nix index a7fd7cf..3c67142 100644 --- a/modules/gui/hyprland.nix +++ b/modules/gui/hyprland.nix @@ -29,6 +29,11 @@ in { description = "enable tearing"; default = false; }; + extraSettings = mkOption { + type = types.attrs; + description = "extra per host hyprland settings"; + default = {}; + }; }; disabledModules = [ "programs/hyprland.nix" ]; @@ -477,7 +482,7 @@ in { keep_focused = true; }; }; - }; + } // cfg.extraSettings; }; }; };