mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
feat: expanded all lists
This commit is contained in:
parent
59cc199722
commit
bb0b55b011
144 changed files with 1798 additions and 507 deletions
4
home/modules/gtk/config/cursorTheme.nix
Executable file
4
home/modules/gtk/config/cursorTheme.nix
Executable file
|
@ -0,0 +1,4 @@
|
|||
{pkgs, ...}: {
|
||||
name = "catppuccin-macchiato-dark-cursors";
|
||||
package = pkgs.catppuccin-cursors.macchiatoDark;
|
||||
}
|
6
home/modules/gtk/config/homeCursor.nix
Executable file
6
home/modules/gtk/config/homeCursor.nix
Executable file
|
@ -0,0 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
gtk.enable = true;
|
||||
name = "catppuccin-mocha-dark-cursors";
|
||||
package = pkgs.catppuccin-cursors.macchiatoDark;
|
||||
size = 14;
|
||||
}
|
7
home/modules/gtk/config/iconTheme.nix
Executable file
7
home/modules/gtk/config/iconTheme.nix
Executable file
|
@ -0,0 +1,7 @@
|
|||
{pkgs, ...}: {
|
||||
package = pkgs.catppuccin-papirus-folders.override {
|
||||
flavor = "macchiato";
|
||||
accent = "mauve";
|
||||
};
|
||||
name = "Papirus-Dark";
|
||||
}
|
10
home/modules/gtk/config/theme.nix
Executable file
10
home/modules/gtk/config/theme.nix
Executable file
|
@ -0,0 +1,10 @@
|
|||
{pkgs, ...}: {
|
||||
package = pkgs.catppuccin-gtk.override {
|
||||
size = "compact";
|
||||
variant = "macchiato";
|
||||
accents = [
|
||||
"mauve"
|
||||
];
|
||||
};
|
||||
name = "catppuccin-macchiato-mauve-compact";
|
||||
}
|
31
home/modules/gtk/default.nix
Executable file
31
home/modules/gtk/default.nix
Executable file
|
@ -0,0 +1,31 @@
|
|||
{pkgs, ...}: let
|
||||
configPath = ./config;
|
||||
cursorThemePath = import (configPath + /cursorTheme.nix) {
|
||||
inherit
|
||||
pkgs
|
||||
;
|
||||
};
|
||||
iconThemePath = import (configPath + /iconTheme.nix) {
|
||||
inherit
|
||||
pkgs
|
||||
;
|
||||
};
|
||||
themePath = import (configPath + /theme.nix) {
|
||||
inherit
|
||||
pkgs
|
||||
;
|
||||
};
|
||||
homeCursorPath = import (configPath + /homeCursor.nix) {
|
||||
inherit
|
||||
pkgs
|
||||
;
|
||||
};
|
||||
in {
|
||||
gtk = {
|
||||
enable = true;
|
||||
cursorTheme = cursorThemePath;
|
||||
iconTheme = iconThemePath;
|
||||
theme = themePath;
|
||||
};
|
||||
home.pointerCursor = homeCursorPath;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue