Enable fonts
This commit is contained in:
parent
253bb50e93
commit
336f75bf50
|
@ -1,6 +1,7 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
imports = [ ../modules/personal/fonts ];
|
||||||
# List packages installed in system profile. To search by name, run:
|
# List packages installed in system profile. To search by name, run:
|
||||||
# $ nix-env -qaP | grep wget
|
# $ nix-env -qaP | grep wget
|
||||||
environment.systemPackages =
|
environment.systemPackages =
|
||||||
|
@ -28,6 +29,8 @@
|
||||||
# $ darwin-rebuild changelog
|
# $ darwin-rebuild changelog
|
||||||
system.stateVersion = 4;
|
system.stateVersion = 4;
|
||||||
|
|
||||||
|
# Font configuration
|
||||||
|
|
||||||
users.users.nki = {
|
users.users.nki = {
|
||||||
name = "nki";
|
name = "nki";
|
||||||
home = "/Users/nki";
|
home = "/Users/nki";
|
||||||
|
|
27
modules/personal/fonts/default.nix
Normal file
27
modules/personal/fonts/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ pkgs, lib, config, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
{
|
||||||
|
# Fonts
|
||||||
|
config.fonts = {
|
||||||
|
fonts = with pkgs; [
|
||||||
|
noto-fonts-emoji-blob-bin
|
||||||
|
ibm-plex
|
||||||
|
(nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
|
||||||
|
noto-fonts
|
||||||
|
noto-fonts-cjk
|
||||||
|
];
|
||||||
|
} // (if (strings.hasSuffix "linux" pkgs.system) then {
|
||||||
|
enableDefaultFonts = false;
|
||||||
|
fontconfig = {
|
||||||
|
defaultFonts = {
|
||||||
|
emoji = lib.mkBefore [ "Blobmoji" ];
|
||||||
|
serif = lib.mkBefore [ "IBM Plex Serif" ];
|
||||||
|
sansSerif = lib.mkBefore [ "IBM Plex Sans" ];
|
||||||
|
monospace = lib.mkBefore [ "IBM Plex Mono" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
} else {}) // (if (strings.hasSuffix "darwin" pkgs.system) then {
|
||||||
|
enableFontDir = true;
|
||||||
|
} else {});
|
||||||
|
}
|
|
@ -10,6 +10,8 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
# secret management
|
# secret management
|
||||||
./secrets
|
./secrets
|
||||||
|
# Fonts
|
||||||
|
../modules/personal/fonts
|
||||||
];
|
];
|
||||||
|
|
||||||
# Use the systemd-boot EFI boot loader.
|
# Use the systemd-boot EFI boot loader.
|
||||||
|
@ -134,26 +136,6 @@
|
||||||
VISUAL = "kak";
|
VISUAL = "kak";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Fonts
|
|
||||||
fonts = {
|
|
||||||
enableDefaultFonts = false;
|
|
||||||
fonts = with pkgs; [
|
|
||||||
noto-fonts-emoji-blob-bin
|
|
||||||
ibm-plex
|
|
||||||
(nerdfonts.override { fonts = [ "FantasqueSansMono" ]; })
|
|
||||||
noto-fonts
|
|
||||||
noto-fonts-cjk
|
|
||||||
];
|
|
||||||
fontconfig = {
|
|
||||||
defaultFonts = {
|
|
||||||
emoji = lib.mkBefore [ "Blobmoji" ];
|
|
||||||
serif = lib.mkBefore [ "IBM Plex Serif" ];
|
|
||||||
sansSerif = lib.mkBefore [ "IBM Plex Sans" ];
|
|
||||||
monospace = lib.mkBefore [ "IBM Plex Mono" ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
# Enable Desktop Environment.
|
# Enable Desktop Environment.
|
||||||
services.xserver.displayManager = {
|
services.xserver.displayManager = {
|
||||||
lightdm.enable = true;
|
lightdm.enable = true;
|
||||||
|
|
Loading…
Reference in a new issue