Files
site/shell.nix
2024-02-20 07:22:54 -05:00

11 lines
141 B
Nix

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