nix-flake/modules/system/misc/theme.nix
2026-06-16 10:38:11 +07:00

14 lines
No EOL
234 B
Nix

{ ctp-opt, ... }: {
qt = {
enable = true;
platformTheme = "gnome";
style = "adwaita-dark";
};
catppuccin = {
enable = true;
autoEnable = true;
flavor = ctp-opt.flavor;
accent = ctp-opt.accent;
};
}