Add desktop fonts

This commit is contained in:
Charlotte 🦝 Delenk 2022-01-18 13:55:16 +00:00
parent 205526720e
commit 32d97a9619
Signed by: darkkirb
GPG key ID: 015E3768A70AFBC5
2 changed files with 19 additions and 2 deletions

17
config/desktop.nix Normal file
View file

@ -0,0 +1,17 @@
{ pkgs, ... }: {
imports = [
./services/sway.nix
];
fonts.fonts = with pkgs; [
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
liberation_ttf
fira-code
fira-code-symbols
mplus-outline-fonts
dina-font
proggyfonts
(nerdfonts.override { fonts = [ "FiraCode" "DroidSansMono" ]; })
];
}

View file

@ -5,7 +5,7 @@
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
./systemd-boot.nix
./services/sway.nix
./desktop.nix
];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "sr_mod" ];
boot.initrd.kernelModules = [ "amdgpu" ];
@ -121,4 +121,4 @@
networking.nameservers = ["192.168.2.1"];
services.xserver.videoDrivers = [ "amdgpu" ];
}
}