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

25 lines
410 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 = {
name = "Catppuccin-Mocha-Compact-Sapphire-dark";
package = pkgs.catppuccin-gtk.override {
accents = ["sapphire"];
size = "compact";
tweaks = ["rimless" "black"];
variant = "mocha";
};
};
};
2023-10-06 01:11:27 -05:00
}