radish: install nerd fonts globally

This commit is contained in:
Joakim Repomaa
2025-03-01 13:18:08 +02:00
parent 5f8e14768f
commit 2df6c1e7a2
2 changed files with 11 additions and 3 deletions

View File

@@ -24,7 +24,6 @@
inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.yubikey-manager
gcc
sqlite
nerdfonts
noto-fonts
noto-fonts-cjk-sans
noto-fonts-color-emoji
@@ -109,7 +108,6 @@
kitty = {
enable = true;
font = {
package = pkgs.nerdfonts;
name = "IosevkaTerm NFM";
size = 12;
};

View File

@@ -1,4 +1,10 @@
{ pkgs, lib, inputs, config, ... }:
{
pkgs,
lib,
inputs,
config,
...
}:
let
secrets = config.age.secrets;
in
@@ -21,6 +27,10 @@ in
pathsToLink = [ "/share/zsh" ];
};
fonts.packages = with inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}; [
nerd-fonts.iosevka
nerd-fonts.iosevka-term
];
services = {
pcscd = {
enable = true;