infrastructure/nixos/hosts/olympus/eevee/home/theme.nix

33 lines
743 B
Nix
Raw Normal View History

2023-05-04 13:06:08 +02:00
{ pkgs, config, ... }:
2023-04-22 16:14:45 +02:00
let
theme = "Catppuccin-Pink-Dark";
cursorTheme = config.home.pointerCursor.name;
in {
home.pointerCursor = {
2023-04-22 17:58:40 +02:00
name = "Bibata-Modern-Classic";
2023-04-22 16:14:45 +02:00
size = 24;
2023-04-22 17:58:40 +02:00
package = pkgs.bibata-cursors;
2023-04-22 16:14:45 +02:00
};
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 ];
};
}