nixos/home/gui/nixos.nix

47 lines
884 B
Nix
Raw Normal View History

2025-01-13 11:52:09 +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;
2025-01-13 11:52:09 +08:00
in
{
2024-01-03 15:29:21 +08:00
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
2025-01-13 11:52:09 +08:00
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 = !config.global.flatpak.enable;
2024-01-20 14:20:32 +08:00
};
2024-01-03 15:29:21 +08:00
};
}