Files
nix-fleet/modules/desktop/sys/fonts.nix
2026-03-03 23:06:45 +01:00

9 lines
182 B
Nix

{ ... }: {
flake.nixosModules.desktop-sys-fonts = { pkgs-unstable, ... }: {
environment.systemPackages = with pkgs-unstable; [
ibm-plex
adwaita-fonts
];
};
}