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

22 lines
371 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
catppuccin.gtk.mocha.standard.blue
papirus-icon-theme
];
gtk = {
# <-- Correct option name
enable = true;
gtk3.enable = true;
theme = {
name = "Catppuccin-Mocha-Standard-Blue-Dark";
variant = "dark";
};
iconTheme = {
name = "Papirus-Dark";
};
};
}