more updates

This commit is contained in:
Barrett Ruth 2026-02-08 13:57:12 -05:00
parent a143d3ab56
commit 65657702af
5 changed files with 129 additions and 25 deletions

View file

@ -1,4 +1,4 @@
{ lib, config, ... }:
{ lib, config, pkgs, fonts, ... }:
let
palettes = {
@ -46,5 +46,17 @@ in {
readOnly = true;
};
config.colors = palettes.${config.theme};
config = {
colors = palettes.${config.theme};
home.pointerCursor = {
name = "macOS";
package = pkgs.apple-cursor;
size = 24;
gtk.enable = true;
x11.enable = true;
};
home.file.".local/share/fonts".source = fonts;
};
}