Initial commit.

This commit is contained in:
Lyle Mantooth 2022-08-28 12:30:39 -04:00
commit 1cb056db47
Signed by: IslandUsurper
GPG key ID: 6DB52EAE123A5789
8 changed files with 294 additions and 0 deletions

9
shell.nix Normal file
View file

@ -0,0 +1,9 @@
let
sources = import ./nix/sources.nix;
pkgs = import sources.nixpkgs {};
in
pkgs.mkShell {
buildInputs = [
pkgs.zola
];
}