tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
xfce.xfce4-settings: add withXrandr option
Kamil Monicz
6 months ago
103d641f
dee34fdb
+2
1 changed file
expand all
collapse all
unified
split
pkgs
desktops
xfce
core
xfce4-settings
default.nix
+2
pkgs/desktops/xfce/core/xfce4-settings/default.nix
reviewed
···
13
13
libxfce4ui,
14
14
libxfce4util,
15
15
libxklavier,
16
16
+
withXrandr ? true,
16
17
upower,
17
18
# Disabled by default on upstream and actually causes issues:
18
19
# https://gitlab.xfce.org/xfce/xfce4-settings/-/issues/222
···
57
58
configureFlags = [
58
59
"--enable-pluggable-dialogs"
59
60
"--enable-sound-settings"
61
61
+
(lib.enableFeature withXrandr "xrandr")
60
62
]
61
63
++ lib.optionals withUpower [ "--enable-upower-glib" ]
62
64
++ lib.optionals withColord [ "--enable-colord" ];