mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-09 15:39:44 +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.
|
||||
|
||||
fonts.packages = with pkgs; [
|
||||
source-han-serif
|
||||
noto-fonts-emoji
|
||||
noto-fonts-cjk
|
||||
];
|
||||
|
||||
# Enable the X11 windowing system.
|
||||
services.xserver.enable = true;
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
./bluetooth
|
||||
./bootloader
|
||||
./filesystem
|
||||
./fonts
|
||||
./hardware
|
||||
./kernel
|
||||
./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