10 lines
213 B
Nix
10 lines
213 B
Nix
{ config, pkgs, inputs, lib, ... }: {
|
|
gtk = {
|
|
enable = true;
|
|
font = {
|
|
name = config.fontProfiles.regular.family;
|
|
package = config.fontProfiles.regular.package;
|
|
size = 12;
|
|
};
|
|
};
|
|
}
|