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