Files
nixos/Droidnix/generated/out_of_tree/machines/traveldroid/gtk.nix
T
2026-03-16 08:40:51 +00:00

19 lines
359 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
catppuccin.gtk.mocha.standard.blue
papirus-icon-theme
];
programs.gtk = {
enable = true;
gtk3.enable = true;
theme.name = "Catppuccin-Mocha-Standard-Blue-Dark";
theme.variant = "dark";
iconTheme.name = "Papirus-Dark";
};
# Check session.nix for variables !
}