mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 10:30:44 +02:00
15 lines
250 B
Nix
15 lines
250 B
Nix
_: {
|
|
flake.nixosModules.fonts = {pkgs, ...}: {
|
|
# fonts
|
|
fonts.packages = with pkgs; [
|
|
nerd-fonts._0xproto
|
|
cinzel
|
|
times-newer-roman
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
gnome-font-viewer
|
|
];
|
|
};
|
|
}
|