mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-06 00:33:39 +00:00
Fix shell.nix pin to 23.11
This commit is contained in:
13
shell.nix
13
shell.nix
@@ -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
|
||||
];
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user