This commit is contained in:
Vivian 2023-09-01 21:06:09 +02:00
parent 1252ff4786
commit 312de0a1a6
6 changed files with 32 additions and 65 deletions

View file

@ -1,32 +0,0 @@
{ 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 ];
};
}