feat: themes module is sick now

This commit is contained in:
Nick 2025-01-18 17:05:54 -06:00
parent a5ec879db0
commit 00cc80e9e4
31 changed files with 460 additions and 48 deletions

View file

@ -1,3 +1,9 @@
{ flake, ... }:
let
inherit (flake.config.aesthetics.themes)
cursor
;
in
[
"swaylock"
"wl-clipboard"
@ -14,5 +20,5 @@
"pactl set-default-sink alsa_output.usb-Focusrite_Scarlett_2i2_USB_Y818KFJ0C671CE-00.HiFi__Line1__sink"
"pactl set-default-source alsa_input.usb-Focusrite_Scarlett_2i2_USB_Y818KFJ0C671CE-00.HiFi__Mic1__source"
"gsettings set org.gnome.desktop.interface cursor-theme 'catppuccin-mocha-dark-cursors'"
"gsettings set org.gnome.desktop.interface cursor-size 18"
"gsettings set org.gnome.desktop.interface cursor-size ${builtins.toString cursor.size}"
]

View file

@ -24,7 +24,11 @@ let
# else null;
decoration = import (configPath + /decoration.nix);
dwindle = import (configPath + /dwindle.nix);
exec-once = import (configPath + /exec-once.nix);
exec-once = import (configPath + /exec-once.nix) {
inherit
flake
;
};
general = import (configPath + /general.nix) {
inherit
flake