notohh
193f2480d7
Some checks failed
ci/woodpecker/cron/flake-lock-update Pipeline failed
license: update pkgs: remove scls nix: update inputs and insecure pkgs tsuki: init gaming file blocky: update blocklist pgres: add dbs home: update themes programs: init opencomposite media: remove spotify-player helix: update theme and scls tsuki: remove stylix overlays: set chatterino tag to null
29 lines
531 B
Nix
29 lines
531 B
Nix
{pkgs, ...}: {
|
|
dconf.settings = {
|
|
"org/gnome/desktop/interface" = {
|
|
color-scheme = "prefer-dark";
|
|
};
|
|
};
|
|
|
|
catppuccin.gtk = {
|
|
enable = true;
|
|
icon = {
|
|
enable = true;
|
|
};
|
|
};
|
|
home.pointerCursor = {
|
|
package = pkgs.bibata-cursors;
|
|
name = "Bibata-Modern-Classic";
|
|
size = 24;
|
|
gtk.enable = true;
|
|
x11.enable = true;
|
|
};
|
|
gtk = {
|
|
enable = true;
|
|
font = {
|
|
name = "Inter";
|
|
package = pkgs.google-fonts.override {fonts = ["Inter"];};
|
|
size = 12;
|
|
};
|
|
};
|
|
}
|