chore: rename nixos to linux

This commit is contained in:
Youwen Wu 2024-08-24 03:52:45 -07:00
parent 26aa04552c
commit cbcb9467d6
Signed by: youwen
GPG key ID: 865658ED1FE61EC3
11 changed files with 18 additions and 20 deletions

18
modules/linux/fonts/default.nix Executable file
View file

@ -0,0 +1,18 @@
{pkgs, ...}: {
fonts = {
enableDefaultPackages = true;
fontconfig = {
defaultFonts = {
serif = ["Noto Serif"];
sansSerif = ["Noto Sans"];
};
};
packages = with pkgs; [
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
(nerdfonts.override {fonts = ["CascadiaCode"];})
(google-fonts.override {fonts = ["Lora"];})
];
};
}