nix-conf/modules/home-manager/fonts/default.nix

8 lines
135 B
Nix
Raw Normal View History

2024-04-12 05:47:49 +00:00
{pkgs, ...}: {
2024-04-12 06:24:14 +00:00
nixpkgs.config.joypixels.acceptLicense = true;
2024-04-12 05:47:49 +00:00
home.packages = with pkgs; [
jetbrains-mono
joypixels
];
}