new_terminal/flake.nix

9 lines
236 B
Nix
Raw Permalink Normal View History

2023-03-04 18:52:45 +01:00
{
description = "development flake";
outputs = { self, nixpkgs }: {
devShell.x86_64-linux = with nixpkgs.legacyPackages.x86_64-linux; mkShell {
packages = [ fontforge bdf2sfd imagemagick tup xorg.bdftopcf ];
};
};
}