nix/home/kde/other.nix
2025-12-14 00:38:59 -05:00

21 lines
390 B
Nix

{ config, ... }:
{
programs.ghostwriter = {
enable = true;
font = {
family = config.userOptions.fontSans.name;
pointSize = config.userOptions.fontSans.size;
};
};
programs.kate = {
enable = true;
editor = {
font = {
family = config.userOptions.fontMono.name;
pointSize = config.userOptions.fontMono.size;
};
};
};
}