diff options
author | Tim Keller <tjkeller.xyz> | 2025-02-05 21:18:01 -0600 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2025-02-05 21:18:01 -0600 |
commit | 430df434c76786e87ab03c0b607c2fec8187173f (patch) | |
tree | e695a287a3b9d3fb02b9f9f12f8c53e1b36aeed5 /modules/home/theme.nix | |
parent | 67adf5929167a527a172ec5c85ccd335fc54cc68 (diff) | |
download | nixos-430df434c76786e87ab03c0b607c2fec8187173f.tar.xz nixos-430df434c76786e87ab03c0b607c2fec8187173f.zip |
fix font bugs in theme, add gpm service
Diffstat (limited to 'modules/home/theme.nix')
-rw-r--r-- | modules/home/theme.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/home/theme.nix b/modules/home/theme.nix index 3bc1d8e..1575540 100644 --- a/modules/home/theme.nix +++ b/modules/home/theme.nix @@ -35,7 +35,7 @@ in { default = "Inter"; description = "default sans serif font"; }; - sansSerif = lib.mkOption { + monospace = lib.mkOption { type = lib.types.str; default = "CommitMono"; description = "default monospace font"; @@ -75,8 +75,8 @@ in { platformTheme.name = "gtk3"; }; fonts.fontconfig.defaultFonts = { - sansSerif = [ config.theme.fonts.sansSerif ]; - monospace = [ config.theme.fonts.monospace ]; + sansSerif = [ config.theme.font.sansSerif ]; + monospace = [ config.theme.font.monospace ]; }; }; } |