mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 10:33:55 -05:00
nixos: grab fira fonts from nerdfonts
This commit is contained in:
parent
62bbdbe1eb
commit
d96a44d260
|
@ -1,6 +1,7 @@
|
||||||
{ pkgs, lib, config, ... }: {
|
{ pkgs, lib, config, ... }: {
|
||||||
|
|
||||||
imports = [ ./displayManagers/lightdm ./gnome ./plasma ./windowManagers/hyprland ];
|
imports =
|
||||||
|
[ ./displayManagers/lightdm ./gnome ./plasma ./windowManagers/hyprland ];
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
desktopConfig.enable =
|
desktopConfig.enable =
|
||||||
|
@ -17,11 +18,18 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# Install pretty fonts.
|
# Install pretty fonts.
|
||||||
fonts.packages = with pkgs; [
|
fonts.packages = with pkgs;
|
||||||
(nerdfonts.override { fonts = [ "Hack" "DroidSansMono" "Noto" ]; })
|
[
|
||||||
fira-code
|
|
||||||
fira-code-symbols
|
|
||||||
liberation_ttf
|
liberation_ttf
|
||||||
|
(nerdfonts.override {
|
||||||
|
fonts = [
|
||||||
|
"DroidSansMono"
|
||||||
|
"FiraCode"
|
||||||
|
"FiraMono"
|
||||||
|
"Hack"
|
||||||
|
"Noto"
|
||||||
|
];
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable basic assortment of GUI apps.
|
# Enable basic assortment of GUI apps.
|
||||||
|
|
Loading…
Reference in a new issue