infrastructure/nixos/hosts/thalassa/aoife/home/theme.nix

33 lines
751 B
Nix
Raw Normal View History

2022-12-01 09:09:08 +01:00
{ lib, pkgs, config, ... }:
let
theme = "Catppuccin-Pink-Dark";
cursorTheme = config.home.pointerCursor.name;
in {
home.pointerCursor = {
2022-12-17 13:21:22 +01:00
name = "Bibata_Ghost";
size = 24;
package = pkgs.bibata-cursors-translucent;
2022-12-01 09:09:08 +01: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;
2022-12-01 22:13:05 +01:00
inherit (config.home.pointerCursor) package size;
2022-12-01 09:09:08 +01:00
};
};
programs.vscode = {
userSettings."workbench.colorTheme" = "Catppuccin Frappé";
extensions = [ pkgs.vscode-extensions.catppuccin.catppuccin-vsc ];
};
}