nix/modules/home-manager/linux-desktop.nix
2023-10-16 15:58:03 -05:00

30 lines
483 B
Nix

{
pkgs,
outputs,
# font,
...
}: {
imports = with outputs.homeManagerModules; [
desktop
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";
};
};
};
services.kdeconnect = {
enable = true;
indicator = true;
};
}