Files
blog/shell.nix
2024-04-03 12:03:10 +02:00

8 lines
101 B
Nix

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