18 lines
384 B
Nix
18 lines
384 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
system,
|
|
...
|
|
}: {
|
|
# imports = [ inputs.unlisted-fonts.packages.${system}.default ];
|
|
environment.systemPackages = with pkgs; [
|
|
# inputs.monolisa.packages.${system}.monolisa-font
|
|
inputs.unlisted-fonts.packages.${system}.gillsans
|
|
];
|
|
fonts.packages = with pkgs; [
|
|
nerd-fonts.fira-code
|
|
nerd-fonts.jetbrains-mono
|
|
nerd-fonts.iosevka
|
|
];
|
|
}
|