current state of things

This commit is contained in:
atagen 2025-06-18 01:06:36 +10:00
parent 63fbd6d499
commit b8d157ab6f
85 changed files with 895 additions and 6014 deletions

View file

@ -1,10 +1,9 @@
{
nix-rice,
rice,
...
}:
let
palette-hex = nix-rice.palette.toRgbHex rice.palette;
pal = rice.palette.hex;
in
{
programs.kitty = {
@ -12,7 +11,7 @@ in
font = {
inherit (rice.fonts.monospace) name size;
};
settings = with palette-hex; {
settings = with pal; {
foreground = util.fg;
background = util.bg;
inherit (util) cursor;
@ -37,6 +36,7 @@ in
color15 = bright.white;
sync_to_monitor = "yes";
shell = "fish";
cursor_trail = 100;
};
};
}