nixos/home/gui/nixos.nix

37 lines
794 B
Nix
Raw Normal View History

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;
catppuccin = config.home.catppuccin;
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 ([
papirus-icon-theme
] ++ optionals (!catppuccin.enable) [
whitesur-gtk-theme
whitesur-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
};
}