Add shell.nix with hugo

This commit is contained in:
Dave Gallant
2024-02-20 07:22:54 -05:00
parent eb1136bf90
commit f7af260779
2 changed files with 11 additions and 0 deletions

1
.envrc Normal file
View File

@@ -0,0 +1 @@
use_nix

10
shell.nix Normal file
View File

@@ -0,0 +1,10 @@
let
channel = "nixos-23.11";
pkgs = import <nixpkgs> { };
in
pkgs.mkShell {
name = "hugo site";
buildInputs = [
pkgs.hugo
];
}