Defcon configuration

This commit is contained in:
Filippo Berto 2021-08-08 03:48:52 +02:00
parent 2de99da8e7
commit 572a496704
9 changed files with 75 additions and 17 deletions

12
modules/fonts.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
fonts.fontconfig = {
enable = true;
};
home.packages = with pkgs; [
dejavu_fonts
noto-fonts
noto-fonts-extra
noto-fonts-cjk
];
}