10 lines
116 B
Nix
10 lines
116 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
|
||
|
# Configure fonts
|
||
|
fonts = {
|
||
|
fontconfig = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|