adding themefile subdir

This commit is contained in:
2025-09-22 13:29:25 -06:00
parent 11c04eb724
commit 7eb6dd5d08
4 changed files with 26 additions and 2 deletions

View File

@@ -36,6 +36,11 @@
# wayland.windowManager.river.enable = true;
imports = [
## Themeing
# cursor theme
../themefiles/cursor.nix
# packages with further configuration
../packages/alacritty/alacritty.nix
../packages/crawl/crawl.nix

View File

@@ -0,0 +1,9 @@
{config, pkgs, ...}:
{
home.pointerCursor = {
name = "oreo-cursors-plus";
package = pkgs.oreo-cursors-plus;
size = 32;
gtk.enable = true;
};
}