1
1
Fork 0
nixos/options/custom/desktops/gnome/default.nix

32 lines
717 B
Nix
Raw Normal View History

{
config,
lib,
...
}:
with lib; let
cfg = config.custom.desktops.gnome;
in {
options.custom.desktops.gnome = {
enable = mkOption {default = false;};
gdm = mkOption {default = true;};
minimal = mkOption {default = false;};
};
config = mkIf cfg.enable {
# https://wiki.nixos.org/wiki/GNOME
# FIXME: xdg-desktop-portal-[gnome|gtk] not working through steam
services = {
xserver = mkIf (!cfg.minimal) {
enable = true;
desktopManager.gnome.enable = true;
displayManager.gdm.enable = cfg.gdm;
};
gnome = {
core-os-services.enable = mkIf cfg.minimal true;
gnome-browser-connector.enable = !cfg.minimal;
};
};
};
}