configuration
common
desktop
audio.nix
default.nix
firmware.nix
fonts.nix
gnome.nix
inputs.nix
networking.nix
polkit.nix
power.nix
printing.nix
ssh.nix
xserver.nix
dn42
gpg-ssh
hydra-build-machine
router
flake
hosts
lib
modules
pkgs
profiles
users
.gitignore
README.md
flake.lock
flake.nix
14 lines
273 B
Nix
14 lines
273 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
fonts.enableDefaultPackages = true;
|
|
fonts.packages = with pkgs; [
|
|
roboto
|
|
roboto-mono
|
|
noto-fonts
|
|
noto-fonts-emoji
|
|
comfortaa
|
|
] ++ (if pkgs ? "noto-fonts-cjk-sans" then [ pkgs.noto-fonts-cjk-sans ] else [ pkgs.noto-fonts-cjk ]);
|
|
}
|