fixes 'system' has been renamed to/replaced by 'stdenv.hostPlatform.system' Wherever possible, it's best to reference the hostPlatform of the nixpkgs instance directly via `config`. This is only possible in NixOS systems though, for standalon home-manager configs we need to get that value through `pkgs.stdenv`.
28 lines
540 B
Nix
28 lines
540 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
home.packages = with pkgs; [
|
|
comic-neue
|
|
source-sans-pro
|
|
source-code-pro
|
|
source-serif-pro
|
|
ubuntu-classic
|
|
twemoji-color-font
|
|
open-sans
|
|
(iosevka-bin.override { variant = "CurlySlab"; })
|
|
inputs.nur.legacyPackages.${pkgs.stdenv.hostPlatform.system}.repos.schmittlauch.vollkorn
|
|
# TODO: humor-sans
|
|
|
|
# fcio corporate design, TODO module
|
|
fira-code
|
|
fira-mono
|
|
# TODO fira-sans + condensed
|
|
# TODO museo 500
|
|
];
|
|
|
|
fonts.fontconfig.enable = true;
|
|
}
|