33 lines
626 B
Nix
33 lines
626 B
Nix
{
|
|
pkgs,
|
|
outputs,
|
|
# font,
|
|
...
|
|
}: {
|
|
imports = with outputs.homeManagerModules; [
|
|
linux
|
|
desktop
|
|
firefox
|
|
];
|
|
|
|
gtk = {
|
|
enable = true;
|
|
theme = {
|
|
name = "Catppuccin-Mocha-Compact-Sapphire-Dark";
|
|
package = pkgs.catppuccin-gtk.override {
|
|
accents = ["sapphire"];
|
|
size = "compact";
|
|
tweaks = ["rimless"];
|
|
variant = "mocha";
|
|
};
|
|
};
|
|
};
|
|
|
|
home.pointerCursor = {
|
|
name = "Bibata-Modern-Classic";
|
|
package = pkgs.bibata-cursors;
|
|
size = 64; # TODO: this doesn't seem to work -- at least in Sway
|
|
# some icons are also missing (hand2?)
|
|
};
|
|
}
|