Set up shell.nix direnv

This commit is contained in:
Elnu 2023-02-01 14:28:18 -08:00
parent d8c698f43b
commit 65b6dfad7a
2 changed files with 10 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use nix

9
shell.nix Normal file
View file

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