move fonts to homeModule

This commit is contained in:
Vinzenz Schroeter 2025-10-02 17:01:21 +02:00
parent e8e036ec93
commit 74bd9ffaa3
3 changed files with 14 additions and 9 deletions

View file

@ -9,6 +9,7 @@
./vscode.nix
./zsh.nix
./starship.nix
./fonts.nix
#./niri.nix
#./swaylock.nix
#./waybar.nix

View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
fonts.fontconfig = {
enable = true;
defaultFonts.monospace = [ "FiraCode Nerd Font Mono" ];
};
home.packages = with pkgs; [
nerd-fonts.fira-code
roboto-mono
recursive
];
}