feat: expanded all lists

This commit is contained in:
Nick 2025-01-08 19:06:14 -06:00
parent 59cc199722
commit bb0b55b011
144 changed files with 1798 additions and 507 deletions

31
home/modules/gtk/default.nix Executable file
View 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;
}