Add nix post and a nix-shell

This commit is contained in:
2024-10-20 19:11:05 +01:00
parent 60143a73ee
commit a0f96cdb32
3 changed files with 394 additions and 5 deletions

10
shell.nix Normal file
View File

@@ -0,0 +1,10 @@
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShellNoCC {
packages = with pkgs; [
hugo
];
}