From 314f88de53fc10e218f550a93cc9c9e3974fae71 Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Mon, 14 Aug 2023 11:03:01 +0300 Subject: [PATCH] Nix: disable nixpkgs module in ours --- nix/module.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/nix/module.nix b/nix/module.nix index a5ecee72..907744f8 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -13,6 +13,9 @@ with lib; let }; }; in { + # disables Nixpkgs Hyprland module to avoid conflicts + disabledModules = ["programs/hyprland.nix"]; + options.programs.hyprland = { enable = mkEnableOption null @@ -48,9 +51,11 @@ in { xwayland.enable = mkEnableOption (mdDoc "support for XWayland") // {default = true;}; - enableNvidiaPatches = mkEnableOption null // { - description = mdDoc "Whether to apply patches to wlroots for better Nvidia support."; - }; + enableNvidiaPatches = + mkEnableOption null + // { + description = mdDoc "Whether to apply patches to wlroots for better Nvidia support."; + }; }; config = mkIf cfg.enable {