added fonts.nix

This commit is contained in:
2024-09-15 10:48:04 -04:00
parent 0f03542255
commit 151e444a07
2 changed files with 12 additions and 1 deletions

View File

@@ -1,8 +1,9 @@
{ {
imports = [ imports = [
./direnv.nix
./fonts.nix
./git.nix ./git.nix
./zsh.nix ./zsh.nix
./direnv.nix
]; ];
programs.starship.enable = true; programs.starship.enable = true;

View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
fonts = {
fontconfig.enable = true;
enableDefaultPackages = true;
packages = with pkgs; [
nerdfonts
];
};
}