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