2025-03-09 11:25:26 +01:00
|
|
|
{ pkgs, theme, ... }:
|
2025-01-07 20:18:30 +01:00
|
|
|
|
2025-01-05 19:14:37 +01:00
|
|
|
{
|
2025-01-07 20:18:30 +01:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
font-awesome # Icons
|
|
|
|
];
|
2025-01-05 19:14:37 +01:00
|
|
|
|
2025-03-09 11:25:26 +01:00
|
|
|
fonts = {
|
|
|
|
fontconfig.enable = true;
|
|
|
|
packages = with pkgs; [
|
|
|
|
(nerdfonts.override { fonts = [ theme.nerdFont ]; })
|
|
|
|
jetbrains-mono
|
|
|
|
# The line below will replace the lines above in 25.05
|
|
|
|
# nerd-fonts.jetbrains-mono
|
|
|
|
font-awesome
|
|
|
|
];
|
|
|
|
};
|
2025-01-05 19:14:37 +01:00
|
|
|
|
|
|
|
}
|