diff --git a/common/fonts.nix b/common/fonts.nix new file mode 100644 index 0000000..cda4193 --- /dev/null +++ b/common/fonts.nix @@ -0,0 +1,16 @@ +{ pkgs, lib, config, ... }: { + + fonts.packages = with pkgs; [ + noto-fonts + noto-fonts-cjk + noto-fonts-emoji + liberation_ttf + fira-code + fira-code-symbols + mplus-outline-fonts.githubRelease + dina-font + nerdfonts + proggyfonts + ]; + +} \ No newline at end of file diff --git a/hosts/tartarus/configuration.nix b/hosts/tartarus/configuration.nix index 7142864..19dc58b 100644 --- a/hosts/tartarus/configuration.nix +++ b/hosts/tartarus/configuration.nix @@ -5,7 +5,7 @@ { config, pkgs, pkgs-unstable, system-label, ... }: { - imports = [ # Include the results of the hardware scan. + imports = [ ./hardware-configuration.nix ../../common/fonts.nix ];