Fix shell.nix pin to 23.11

This commit is contained in:
Dave Gallant
2024-03-31 12:29:46 -04:00
parent 7202c2c37e
commit 37a27723f9
2 changed files with 8 additions and 7 deletions

View File

@@ -31,7 +31,7 @@ jobs:
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: "0.124.1"
hugo-version: "0.120.3"
extended: true
- run: npm ci

View File

@@ -1,10 +1,11 @@
let
channel = "nixos-23.11";
pkgs = import <nixpkgs> { };
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11";
pkgs = import nixpkgs { config = { }; overlays = [ ]; };
in
pkgs.mkShell {
name = "hugo site";
buildInputs = [
pkgs.hugo
pkgs.mkShellNoCC {
packages = with pkgs; [
hugo
];
}