2024-01-03 15:29:21 +08:00
|
|
|
{ pkgs
|
|
|
|
, lib
|
|
|
|
, config
|
|
|
|
, ... }: with lib; let
|
2024-01-27 22:14:03 +08:00
|
|
|
gui = with config.global.gpu; enable && session;
|
2024-01-03 15:29:21 +08:00
|
|
|
in {
|
|
|
|
config = {
|
|
|
|
users.homeModules = [
|
|
|
|
# this module passes gui configuration to home-manager
|
|
|
|
{ passthrough.gui = gui; }
|
|
|
|
];
|
|
|
|
users.adminGroups = mkIf gui [ "video" ];
|
|
|
|
|
2024-01-03 16:23:05 +08:00
|
|
|
# themes and icons
|
2024-01-04 11:46:31 +08:00
|
|
|
environment.systemPackages = with pkgs; mkIf gui [
|
2024-01-03 16:23:05 +08:00
|
|
|
whitesur-gtk-theme whitesur-icon-theme
|
2024-01-28 10:38:29 +08:00
|
|
|
papirus-icon-theme bibata-cursors
|
2024-01-03 16:23:05 +08:00
|
|
|
];
|
|
|
|
|
2024-01-20 14:20:32 +08:00
|
|
|
fonts.enableDefaultPackages = mkIf gui true;
|
|
|
|
|
2024-01-03 15:29:21 +08:00
|
|
|
security = mkIf gui {
|
|
|
|
polkit.enable = true;
|
|
|
|
};
|
|
|
|
programs = mkIf gui {
|
|
|
|
dconf.enable = true;
|
|
|
|
};
|
2024-01-20 14:20:32 +08:00
|
|
|
services = mkIf gui {
|
|
|
|
blueman.enable = true;
|
|
|
|
};
|
2024-01-03 15:29:21 +08:00
|
|
|
};
|
|
|
|
}
|