Add fonts to home-manager config

This commit is contained in:
Joey Hafner 2024-10-14 14:16:48 -07:00
parent 3026858fc4
commit d9644039cc
2 changed files with 11 additions and 2 deletions

View File

@ -8,6 +8,7 @@
./flatpak.nix
./steam.nix
./locale.nix
./fonts.nix
];
# Configure user
@ -22,8 +23,7 @@
url = "https://github.com/Jafner.keys";
sha256 = "1i3Vs6mPPl965g3sRmbXGzx6zQBs5geBCgNx2zfpjF4=";
};
in pkgs.lib.splitString "\n" (builtins.readFile
authorizedKeys);
in pkgs.lib.splitString "\n" (builtins.readFile authorizedKeys);
};
# DO NOT CHANGE

9
nix/nixos/fonts.nix Normal file
View File

@ -0,0 +1,9 @@
{ pkgs, ... }: {
fonts.packages = with pkgs; [
noto-fonts noto-fonts-cjk noto-fonts-emoji
liberation_ttf
fira-code fira-code-symbols
font-awesome
nerdfonts
];
}