35 lines
No EOL
660 B
Nix
35 lines
No EOL
660 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.hyprland =
|
|
{ pkgs, ... }:
|
|
{
|
|
nixpkgs.config.allowUnfreePackages = [
|
|
"symbola"
|
|
];
|
|
fonts.packages = with pkgs; [
|
|
dejavu_fonts
|
|
fira-code
|
|
fira-code-symbols
|
|
font-awesome
|
|
hackgen-nf-font
|
|
ibm-plex
|
|
inter
|
|
jetbrains-mono
|
|
material-icons
|
|
maple-mono.NF
|
|
minecraftia
|
|
nerd-fonts.im-writing
|
|
nerd-fonts.blex-mono
|
|
noto-fonts
|
|
noto-fonts-color-emoji
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-cjk-serif
|
|
noto-fonts-monochrome-emoji
|
|
powerline-fonts
|
|
roboto
|
|
roboto-mono
|
|
symbola
|
|
terminus_font
|
|
];
|
|
};
|
|
} |