nix-da/modules/themes/default.nix

21 lines
362 B
Nix

{
pkgs,
lib,
config,
...
}:
{
config = lib.mkIf config.modules.system.roles.desktop.enable {
qt = {
enable = true;
platformTheme = "gtk2"; # Follow gtk theme
};
environment.systemPackages = with pkgs; [
(catppuccin-papirus-folders.override {
accent = "lavender";
flavor = "frappe";
})
];
};
}