many changes

This commit is contained in:
Sean Kovacs 2025-12-14 00:38:59 -05:00
commit 6641cfac30
Signed by: sckova
GPG key ID: 00F325187C68651A
15 changed files with 527 additions and 515 deletions

View file

@ -1,9 +1,11 @@
{ config, ... }:
{
programs.ghostwriter = {
enable = true;
font = {
family = "Noto Sans";
pointSize = 12;
family = config.userOptions.fontSans.name;
pointSize = config.userOptions.fontSans.size;
};
};
@ -11,8 +13,8 @@
enable = true;
editor = {
font = {
family = "NotoSansM Nerd Font Mono";
pointSize = 10;
family = config.userOptions.fontMono.name;
pointSize = config.userOptions.fontMono.size;
};
};
};