diff options
Diffstat (limited to 'modules/hosts/libreX60/home.nix')
-rw-r--r-- | modules/hosts/libreX60/home.nix | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/modules/hosts/libreX60/home.nix b/modules/hosts/libreX60/home.nix index 453bfd6..5b35457 100644 --- a/modules/hosts/libreX60/home.nix +++ b/modules/hosts/libreX60/home.nix @@ -1,8 +1,18 @@ { ... }: { imports = [ ../../home ]; - theme.mint.theme.color = "Dark-Red"; - theme.mint.icons.color = "Red"; - theme.font.sansSerif = "Tamzen"; - theme.font.monospace = "Tamzen"; + theme = { + mint.theme.color = "Dark-Red"; + mint.icons.color = "Red"; + font = { + monospace = "Tamzen"; + gtk.name = "monospace"; + gtk.size = 8; + }; + cursor.size = 24; + st = { + enable = true; + font = "Tamzen:pixelsize=14"; + }; + }; } |