mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-10 13:13:57 +00:00
15 lines
263 B
Nix
15 lines
263 B
Nix
{ x, config, ... }:
|
|
with x;
|
|
{
|
|
programs.floorp.profiles.${userName}.userChrome =
|
|
let
|
|
font = config.stylix.fonts;
|
|
in
|
|
''
|
|
* {
|
|
font-family: "${font.monospace.name}" !important;
|
|
font-size: 12pt !important;
|
|
}
|
|
'';
|
|
}
|