nixos-config/fonts.nix

12 lines
311 B
Nix
Raw Normal View History

2024-03-26 02:13:05 +00:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
2024-04-14 00:01:16 +00:00
{ pkgs, ... }:
2024-03-26 02:13:05 +00:00
{
fonts.fontconfig.enable = true;
2024-04-14 00:05:55 +00:00
fonts.packages = with pkgs; [
cozette
];
2024-03-26 02:13:05 +00:00
}