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;
};
};
};

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ config, pkgs, ... }:
{
@ -13,7 +13,7 @@
};
workspace = {
iconTheme = "Colloid-Dark";
iconTheme = config.gtk.iconTheme.name;
windowDecorations = {
library = "org.kde.breeze";
theme = "Breeze";