mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-05 08:13:40 +00:00
11 lines
141 B
Nix
11 lines
141 B
Nix
let
|
|
channel = "nixos-23.11";
|
|
pkgs = import <nixpkgs> { };
|
|
in
|
|
pkgs.mkShell {
|
|
name = "hugo site";
|
|
buildInputs = [
|
|
pkgs.hugo
|
|
];
|
|
}
|