nixos/shell.nix
2024-05-14 11:09:49 -04:00

8 lines
85 B
Nix

{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
packages = [
just
];
}