mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
26 lines
598 B
Nix
26 lines
598 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
let
|
||
|
cfg = config.sconfig.gnome-monitor-settings-tweak;
|
||
|
in
|
||
|
{
|
||
|
options.sconfig.gnome-monitor-settings-tweak = lib.mkOption {
|
||
|
default = true;
|
||
|
type = lib.types.bool;
|
||
|
description = "Replace displays=2 settings screen with the displays>2 one";
|
||
|
};
|
||
|
|
||
|
config = lib.mkIf cfg {
|
||
|
nixpkgs.overlays = [
|
||
|
|
||
|
(self: super: {
|
||
|
gnome = super.gnome // {
|
||
|
gnome-control-center = super.gnome.gnome-control-center.overrideAttrs (attr: {
|
||
|
patches = attr.patches ++ [ ./control-center.patch ];
|
||
|
});
|
||
|
};
|
||
|
})
|
||
|
|
||
|
];
|
||
|
};
|
||
|
}
|