mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-05 16:23:39 +00:00
Fix shell.nix pin to 23.11
This commit is contained in:
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
@@ -31,7 +31,7 @@ jobs:
|
|||||||
- name: Setup Hugo
|
- name: Setup Hugo
|
||||||
uses: peaceiris/actions-hugo@v2
|
uses: peaceiris/actions-hugo@v2
|
||||||
with:
|
with:
|
||||||
hugo-version: "0.124.1"
|
hugo-version: "0.120.3"
|
||||||
extended: true
|
extended: true
|
||||||
|
|
||||||
- run: npm ci
|
- run: npm ci
|
||||||
|
13
shell.nix
13
shell.nix
@@ -1,10 +1,11 @@
|
|||||||
let
|
let
|
||||||
channel = "nixos-23.11";
|
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11";
|
||||||
pkgs = import <nixpkgs> { };
|
pkgs = import nixpkgs { config = { }; overlays = [ ]; };
|
||||||
in
|
in
|
||||||
pkgs.mkShell {
|
|
||||||
name = "hugo site";
|
pkgs.mkShellNoCC {
|
||||||
buildInputs = [
|
packages = with pkgs; [
|
||||||
pkgs.hugo
|
hugo
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user