ekzyis/shell.nix

9 lines
130 B
Nix
Raw Normal View History

{ pkgs ? import <nixpkgs> {} }:
2024-06-03 03:38:28 +00:00
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages;
[
go hugo tailwindcss
];
}