This commit is contained in:
Valentin Boettcher 2021-07-31 13:34:17 +02:00
commit 7d4a4719be
No known key found for this signature in database
GPG key ID: E034E12B7AF56ACE
4 changed files with 8 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use_nix

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/.direnv/

2
readme.org Normal file
View file

@ -0,0 +1,2 @@
* Valentin's new Website
Valentin's new Hugo website powered by [[https://gohugo.io/][hugo]] and [[https://ox-hugo.scripter.co/][ox-hugo]]

4
shell.nix Normal file
View file

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