mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-21 19:52:52 +00:00
add fonts
This commit is contained in:
parent
48447ae5a5
commit
20bcb45771
3 changed files with 8 additions and 6 deletions
|
@ -33,12 +33,6 @@
|
||||||
|
|
||||||
# Select internationalisation properties.
|
# Select internationalisation properties.
|
||||||
|
|
||||||
fonts.packages = with pkgs; [
|
|
||||||
source-han-serif
|
|
||||||
noto-fonts-emoji
|
|
||||||
noto-fonts-cjk
|
|
||||||
];
|
|
||||||
|
|
||||||
# Enable the X11 windowing system.
|
# Enable the X11 windowing system.
|
||||||
services.xserver.enable = true;
|
services.xserver.enable = true;
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
./bluetooth
|
./bluetooth
|
||||||
./bootloader
|
./bootloader
|
||||||
./filesystem
|
./filesystem
|
||||||
|
./fonts
|
||||||
./hardware
|
./hardware
|
||||||
./kernel
|
./kernel
|
||||||
./locale
|
./locale
|
||||||
|
|
7
modules/nixos/fonts/default.nix
Normal file
7
modules/nixos/fonts/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
fonts.packages = with pkgs; [
|
||||||
|
source-han-serif
|
||||||
|
noto-fonts-emoji
|
||||||
|
noto-fonts-cjk
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue