added nix stuffs

This commit is contained in:
pingu 2023-08-07 18:50:32 +02:00
parent e0bf7cb93e
commit 2dfaf1654e
2 changed files with 11 additions and 0 deletions

1
.envrc Normal file
View File

@ -0,0 +1 @@
use nix

10
shell.nix Normal file
View File

@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
name = "blog";
buildInputs = [
hugo
];
}