feat: Add nerdfont

This commit is contained in:
2025-12-03 19:32:22 -05:00
committed by Hunter Halloran
parent 8d24243af6
commit 5c03739ff7
2 changed files with 8 additions and 1 deletions

View File

@@ -5,7 +5,6 @@
{ ... }:
{
# Bootloader.
boot = {
loader.systemd-boot.enable = true;

8
sw.nix
View File

@@ -41,6 +41,14 @@
programs.zsh.enable = true;
fonts.packages = with pkgs; [
nerd-fonts.fira-code
];
fonts.fontconfig = {
enable = true;
defaultFonts.monospace = [ "FiraCode Nerd Font Mono" ];
};
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
programs.mtr.enable = true;