nix/modules/home-manager/desktop.nix
2023-10-06 01:11:27 -05:00

23 lines
386 B
Nix

{
outputs,
pkgs,
...
}: {
imports = with outputs.homeManagerModules; [
kitty
];
gtk = {
enable = true;
theme = {
name = "Catppuccin-Mocha-Compact-Sapphire-dark";
package = pkgs.catppuccin-gtk.override {
accents = ["sapphire"];
size = "compact";
tweaks = ["rimless" "black"];
variant = "mocha";
};
};
};
}