mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
32 lines
581 B
Nix
32 lines
581 B
Nix
![]() |
{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;
|
||
|
}
|