nix-config/modules/home-manager/themes/catppuccin/gnome.nix
Jo ae474de92e [general] add missing shell theme config to gnome
Signed-off-by: Jo <johannesreckers2006@gmail.com>
2024-05-29 14:00:31 +02:00

24 lines
No EOL
507 B
Nix

{
inputs,
pkgs,
outputs,
lib,
...
}: {
gtk = {
enable = true;
};
dconf.settings = {
# ---------------------- Theming
"org/gnome/desktop/background" = {
picture-uri = "${outputs.resources.wallpapers}/animals_at_campfire.jpg";
picture-uri-dark = "${outputs.resources.wallpapers}/animals_at_campfire.jpg";
};
"org/gnome/shell/extensions/user-theme" = {
name = "Catppuccin-Frappe-Standard-Blue-Dark";
};
# ---------------------- Theming END
};
}