nixos-config/fonts.nix

16 lines
478 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
let
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz";
in
{
imports = [ (import "${home-manager}/nixos") ];
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
}