16 lines
304 B
Nix
16 lines
304 B
Nix
{
|
|
flake.modules.nixos.nerdfonts = { pkgs, ... }: {
|
|
fonts = {
|
|
enableDefaultPackages = true;
|
|
packages = with pkgs; [
|
|
nerd-fonts.jetbrains-mono
|
|
];
|
|
fontDir.enable = true;
|
|
};
|
|
};
|
|
|
|
flake.modules.homeManager.nerdfonts = {
|
|
gtk.font.name = "JetBrainsMono";
|
|
};
|
|
}
|