Add new font
This commit is contained in:
parent
2f93a2faf7
commit
f7bcefa02c
21
nixos.nix
21
nixos.nix
|
@ -132,12 +132,21 @@ let systemInformation = import ./system/system-information.nix; in
|
|||
geary
|
||||
totem
|
||||
];
|
||||
fonts.fonts = with pkgs; with import packages/all-packages.nix nixpkgs; [
|
||||
justseeds
|
||||
manrope
|
||||
google-fonts
|
||||
comic-mono
|
||||
];
|
||||
fonts = {
|
||||
fonts = with pkgs; with import packages/all-packages.nix nixpkgs; [
|
||||
justseeds
|
||||
manrope
|
||||
google-fonts
|
||||
comic-mono
|
||||
atkinson-hyperlegible
|
||||
];
|
||||
fontDir.enable = true;
|
||||
enableDefaultFonts = true;
|
||||
fontconfig.defaultFonts = {
|
||||
sansSerif = ["Atkinson Hyperlegible"];
|
||||
monospace = ["Comic Mono:style=Normal"];
|
||||
};
|
||||
};
|
||||
|
||||
# List services that you want to enable:
|
||||
|
||||
|
|
Loading…
Reference in a new issue