mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 20:40:32 +01:00
27 lines
456 B
Nix
27 lines
456 B
Nix
|
{
|
||
|
config,
|
||
|
pkgs,
|
||
|
inputs,
|
||
|
...
|
||
|
}: {
|
||
|
dconf.settings = {
|
||
|
"org/gnome/desktop/interface" = {
|
||
|
color-scheme = "prefer-dark";
|
||
|
cursor-theme = "Adwaita";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
gtk = {
|
||
|
enable = true;
|
||
|
theme = {
|
||
|
name = "Catppuccin-Mocha-Compact-Pink-Dark";
|
||
|
package = pkgs.catppuccin-gtk.override {
|
||
|
accents = ["pink"];
|
||
|
size = "compact";
|
||
|
tweaks = ["rimless"];
|
||
|
variant = "mocha";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|