feat(gui): add catppuccin gtk and cursor themes
This commit is contained in:
parent
b54d9e00af
commit
a4096481a0
5 changed files with 115 additions and 45 deletions
13
home/gui/catppuccin/home.nix
Normal file
13
home/gui/catppuccin/home.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ pkgs
|
||||
, lib
|
||||
, config
|
||||
, ... }: with lib; let
|
||||
cfg = config.passthrough.catppuccin;
|
||||
in mkIf cfg.enable {
|
||||
# cursor theme
|
||||
home.pointerCursor = { inherit (cfg.cursor) package name; };
|
||||
gtk.cursorTheme = { inherit (cfg.cursor) package name; };
|
||||
|
||||
# gtk theme
|
||||
gtk.theme = { inherit (cfg.gtk) package name; };
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue