nix/modules/home-manager/desktop.nix

24 lines
398 B
Nix
Raw Normal View History

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