Files
nixos-config/home/themes/catppuccin/qt.nix
Elias Schröter 5e1e3e1e84 themes and services
fix errors in themes and service setup
2026-03-18 21:51:06 +01:00

18 lines
306 B
Nix

{ config, pkgs, ... }:
{
qt = {
enable = true;
platformTheme.name = "qtct";
style.name = "kvantum";
};
home.packages = with pkgs; [
(catppuccin-kvantum.override {
variant = "mocha";
accent = "pink";
})
libsForQt5.qtstyleplugin-kvantum
libsForQt5.qt5ct
];
}