Archived
0
0
Fork 0

move fonts to xorg file

This commit is contained in:
Daryl Ronningen 2023-01-02 00:12:13 -08:00
parent ade0c23a94
commit 01bb54f67c
Signed by: Daryl Ronningen
GPG key ID: FD23F0C934A5EC6B
3 changed files with 7 additions and 9 deletions

View file

@ -1,8 +0,0 @@
{pkgs, ...}: {
fonts = {
enableDefaultFonts = true;
enableGhostscriptFonts = true;
fontDir.enable = true;
fonts = [pkgs.nerdfonts];
};
}

View file

@ -4,4 +4,11 @@
autorun = true; autorun = true;
excludePackages = [pkgs.xterm]; excludePackages = [pkgs.xterm];
}; };
fonts = {
enableDefaultFonts = true;
enableGhostscriptFonts = true;
fontDir.enable = true;
fonts = [pkgs.nerdfonts pkgs.noto-fonts-cjk-sans];
};
} }

View file

@ -53,7 +53,6 @@
desktops = { desktops = {
common = [ common = [
./common/desktop/apps.nix ./common/desktop/apps.nix
./common/desktop/fonts.nix
./common/desktop/media.nix ./common/desktop/media.nix
./common/desktop/xorg.nix ./common/desktop/xorg.nix
]; ];