diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2025-12-15 21:42:15 -0600 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2025-12-15 21:42:15 -0600 |
| commit | c88223b386dfa4533934632f9de3ab1810c6c078 (patch) | |
| tree | fe05a993297d416889f7f1561c9f6bac060ae08d | |
| parent | f17695133828debe6e75c50968fc1e6da40e6e5b (diff) | |
| download | nixos-c88223b386dfa4533934632f9de3ab1810c6c078.tar.xz nixos-c88223b386dfa4533934632f9de3ab1810c6c078.zip | |
theme st by default in desktop profile since new build uses monospace as default font
| -rw-r--r-- | archetypes/profiles/desktop/default.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/archetypes/profiles/desktop/default.nix b/archetypes/profiles/desktop/default.nix index 7555c56..6c5d509 100644 --- a/archetypes/profiles/desktop/default.nix +++ b/archetypes/profiles/desktop/default.nix @@ -81,6 +81,18 @@ programs = { _pcmanfm.openAsRootOption.enable = mkDesktop true; + _st = { + enable = mkDesktop true; + font = { + name = mkDesktop "JetBrainsMonoNL Nerd Font Mono"; + # Default attrs + attrs = { + size = 12; + antialias = true; + autohint = true; + }; + }; + }; firefox._configure = mkDesktop true; htop._configure = mkDesktop true; zathura = { |
