infrastructure/nixos/hosts/thalassa/eevee/home/theme.nix
Vivian 0cb9e1ac06
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fix wayland + nvidia for eevee
2023-04-22 17:58:40 +02:00

33 lines
748 B
Nix

{ lib, pkgs, config, ... }:
let
theme = "Catppuccin-Pink-Dark";
cursorTheme = config.home.pointerCursor.name;
in {
home.pointerCursor = {
name = "Bibata-Modern-Classic";
size = 24;
package = pkgs.bibata-cursors;
};
gtk = {
enable = true;
theme = {
name = theme;
package = pkgs.catppuccin-gtk;
};
iconTheme = {
name = "Papirus-Dark";
package = pkgs.papirus-icon-theme.override { color = "violet"; };
};
cursorTheme = {
name = cursorTheme;
inherit (config.home.pointerCursor) package size;
};
};
programs.vscode = {
userSettings."workbench.colorTheme" = "Catppuccin Frappé";
extensions = [ pkgs.vscode-extensions.catppuccin.catppuccin-vsc ];
};
}