mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-05 08:13:40 +00:00
12 lines
210 B
Nix
12 lines
210 B
Nix
let
|
|
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11";
|
|
pkgs = import nixpkgs { config = { }; overlays = [ ]; };
|
|
in
|
|
|
|
pkgs.mkShellNoCC {
|
|
packages = with pkgs; [
|
|
hugo
|
|
];
|
|
|
|
}
|