added sane modules

This commit is contained in:
Charlie Root 2024-04-10 14:21:41 +02:00
commit d7546e9591
5 changed files with 57 additions and 3 deletions

13
options/desktop/fonts.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
fonts.packages = with pkgs; [
material-design-icons
(nerdfonts.override {
fonts = [ "JetBrainsMono"];
})
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
noto-fonts-emoji
];
}