nix/modules/home-manager/linux-desktop.nix

30 lines
475 B
Nix
Raw Normal View History

2023-10-06 01:11:27 -05:00
{
2023-10-06 01:30:15 -05:00
pkgs,
2023-10-06 01:11:27 -05:00
outputs,
# font,
...
}: {
imports = with outputs.homeManagerModules; [
desktop
firefox
];
2023-10-06 01:30:15 -05:00
gtk = {
enable = true;
theme = {
2023-10-16 16:50:55 -05:00
name = "Catppuccin-Mocha-Compact-Sapphire-Dark";
2023-10-06 01:30:15 -05:00
package = pkgs.catppuccin-gtk.override {
accents = ["sapphire"];
size = "compact";
2023-10-16 16:50:55 -05:00
tweaks = ["rimless"];
2023-10-06 01:30:15 -05:00
variant = "mocha";
};
};
};
2023-10-16 15:58:03 -05:00
services.kdeconnect = {
enable = true;
indicator = true;
};
2023-10-06 01:11:27 -05:00
}