nixos/home/gui/nixos.nix

33 lines
684 B
Nix
Raw Normal View History

2024-01-03 15:29:21 +08:00
{ pkgs
, lib
, config
, ... }: with lib; let
2024-01-07 22:01:31 +08:00
gui = with config.global.gui; ( 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
environment.systemPackages = with pkgs; mkIf gui [
2024-01-03 16:23:05 +08:00
whitesur-gtk-theme whitesur-icon-theme
bibata-cursors
];
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
};
}