mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 14:45:59 +01:00
Nix: disable nixpkgs module in ours
This commit is contained in:
parent
aff4a1e237
commit
314f88de53
1 changed files with 8 additions and 3 deletions
|
@ -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,7 +51,9 @@ in {
|
|||
|
||||
xwayland.enable = mkEnableOption (mdDoc "support for XWayland") // {default = true;};
|
||||
|
||||
enableNvidiaPatches = mkEnableOption null // {
|
||||
enableNvidiaPatches =
|
||||
mkEnableOption null
|
||||
// {
|
||||
description = mdDoc "Whether to apply patches to wlroots for better Nvidia support.";
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue