Files
nixos/Droidnix/generated/out_of_tree/machines/traveldroid/gtk.nix
T
2026-03-16 09:16:48 +00:00

25 lines
470 B
Nix

{ pkgs, ... }:
{
# Install the Catppuccin GTK theme system-wide
environment.systemPackages = with pkgs; [
catppuccin-gtk
papirus-icon-theme
];
# Set the GTK theme and icon theme system-wide
gtk = {
theme = {
name = "Catppuccin-Mocha-Standard-Blue-Dark";
};
iconTheme = {
name = "Papirus-Dark";
};
};
# Force dark mode for all GTK applications
environment.sessionVariables = {
GTK_ENABLE_DARK_MODE = "1";
};
}