dork.dev/shell.nix

8 lines
119 B
Nix

{pkgs ? import <nixpkgs> {}}: let
inherit (pkgs) mkShell zola;
in
mkShell {
packages = [
zola
];
}