nixos/modules/system/gui.nix

37 lines
1.3 KiB
Nix
Raw Normal View History

2023-09-02 21:03:23 +08:00
inputs:
{
options.nixos.system.gui = let inherit (inputs.lib) mkOption types; in
{
enable = mkOption { type = types.bool; default = false; };
2023-09-12 16:31:20 +08:00
preferred = mkOption { type = types.bool; default = false; };
2023-11-12 20:14:33 +08:00
autoStart = mkOption { type = types.bool; default = inputs.config.nixos.system.gui.preferred; };
2023-09-02 21:03:23 +08:00
};
config =
let
inherit (inputs.lib) mkIf;
inherit (inputs.config.nixos.system) gui;
in mkIf gui.enable
{
services.xserver =
{
enable = true;
displayManager = { sddm.enable = true; defaultSession = "plasmawayland"; };
2023-09-02 21:03:23 +08:00
desktopManager.plasma5.enable = true;
videoDrivers = inputs.config.nixos.hardware.gpus;
};
2023-11-12 20:14:33 +08:00
systemd.services.display-manager = { after = [ "network-online.target" ]; enable = gui.autoStart; };
environment =
{
sessionVariables."GTK_USE_PORTAL" = "1";
plasma5.excludePackages = inputs.lib.mkIf (!gui.preferred) [ inputs.pkgs.plasma5Packages.plasma-nm ];
};
2023-09-02 21:03:23 +08:00
xdg.portal.extraPortals = map (p: inputs.pkgs."xdg-desktop-portal-${p}") [ "gtk" "kde" "wlr" ];
i18n.inputMethod =
{
enabled = "fcitx5";
fcitx5.addons = with inputs.pkgs; [ fcitx5-rime fcitx5-chinese-addons fcitx5-mozc ];
};
2023-11-16 15:51:47 +08:00
programs = { dconf.enable = true; xwayland.enable = true; };
2023-09-02 21:03:23 +08:00
};
}