feat: init fonts.nix module
This commit is contained in:
parent
c6216916ce
commit
a689375bb0
4 changed files with 54 additions and 42 deletions
|
@ -1,6 +1,8 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
{ config, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports =
|
||||
[
|
||||
./hardware-configuration.nix
|
||||
|
@ -26,10 +28,14 @@
|
|||
|
||||
virtualisation.libvirtd.enable = true;
|
||||
|
||||
networking.hostName = "tsuki";
|
||||
|
||||
networking.networkmanager.enable = true;
|
||||
networking.nameservers = [ "192.168.1.45" ];
|
||||
networking = {
|
||||
networkmanager.enable = true;
|
||||
nameservers = [ "192.168.1.45" ];
|
||||
hostName = "tsuki";
|
||||
firewall = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
# pihole
|
||||
environment.etc = {
|
||||
|
@ -61,11 +67,6 @@
|
|||
videoDrivers = [ "nvidia" ];
|
||||
layout = "us";
|
||||
xkbVariant = "";
|
||||
displayManager = {
|
||||
lightdm = {
|
||||
enable = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -153,32 +154,6 @@
|
|||
python310Packages.python-lsp-server
|
||||
];
|
||||
|
||||
fonts = {
|
||||
enableDefaultFonts = true;
|
||||
fontDir.enable = true;
|
||||
fonts = with pkgs; [
|
||||
inter
|
||||
jetbrains-mono
|
||||
nerdfonts
|
||||
noto-fonts-cjk-sans
|
||||
twemoji-color-font
|
||||
font-awesome
|
||||
fira-code-symbols
|
||||
kochi-substitute
|
||||
ipafont
|
||||
];
|
||||
|
||||
fontconfig = {
|
||||
enable = true;
|
||||
allowBitmaps = true;
|
||||
defaultFonts = {
|
||||
monospace = ["JetBrainsMono Nerd Font"];
|
||||
sansSerif = ["Google Sans Text"];
|
||||
};
|
||||
hinting.style = "hintfull";
|
||||
};
|
||||
};
|
||||
|
||||
nix = {
|
||||
package = pkgs.nixFlakes;
|
||||
extraOptions = ''
|
||||
|
|
|
@ -6,5 +6,6 @@
|
|||
./tailscale.nix
|
||||
./security.nix
|
||||
./udevd.nix
|
||||
./fonts.nix
|
||||
];
|
||||
}
|
||||
|
|
34
modules/fonts.nix
Normal file
34
modules/fonts.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
|
||||
fonts = {
|
||||
enableDefaultFonts = false;
|
||||
fontDir.enable = true;
|
||||
fonts = with pkgs; [
|
||||
inter
|
||||
jetbrains-mono
|
||||
nerdfonts
|
||||
noto-fonts-cjk-sans
|
||||
twemoji-color-font
|
||||
font-awesome
|
||||
fira-code-symbols
|
||||
kochi-substitute
|
||||
ipafont
|
||||
];
|
||||
|
||||
fontconfig = {
|
||||
enable = true;
|
||||
allowBitmaps = true;
|
||||
defaultFonts = {
|
||||
monospace = ["JetBrainsMono Nerd Font"];
|
||||
sansSerif = ["Noto Sans" "Noto Color Emoji"];
|
||||
emoji = ["Twitter Color Emoji"];
|
||||
};
|
||||
|
||||
hinting.style = "hintfull";
|
||||
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue