nixos/home/gui/nixos.nix
2024-01-20 14:20:32 +08:00

33 lines
684 B
Nix

{ pkgs
, lib
, config
, ... }: with lib; let
gui = with config.global.gui; ( enable && session );
in {
config = {
users.homeModules = [
# this module passes gui configuration to home-manager
{ passthrough.gui = gui; }
];
users.adminGroups = mkIf gui [ "video" ];
# themes and icons
environment.systemPackages = with pkgs; mkIf gui [
whitesur-gtk-theme whitesur-icon-theme
bibata-cursors
];
fonts.enableDefaultPackages = mkIf gui true;
security = mkIf gui {
polkit.enable = true;
};
programs = mkIf gui {
dconf.enable = true;
};
services = mkIf gui {
blueman.enable = true;
};
};
}