Move fonts back into the home config

This commit is contained in:
SebastianStork 2024-04-03 23:02:19 +02:00
parent 9c2a58d0f0
commit aca5ee744e
2 changed files with 7 additions and 7 deletions

View file

@ -31,13 +31,6 @@
pkgs.neovim
];
fonts.packages = [
(pkgs.nerdfonts.override {fonts = ["JetBrainsMono" "NerdFontsSymbolsOnly"];})
pkgs.corefonts
pkgs.roboto
pkgs.open-sans
];
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (pkgs.lib.getName pkg) [
"spotify"

View file

@ -39,5 +39,12 @@
pkgs.jetbrains.idea-community
pkgs.vlc
pkgs.onlyoffice-bin_latest
(pkgs.nerdfonts.override {fonts = ["JetBrainsMono" "NerdFontsSymbolsOnly"];})
pkgs.corefonts
pkgs.roboto
pkgs.open-sans
];
fonts.fontconfig.enable = true;
}