Initial commit
All checks were successful
deploy-pages Deployed in 22 seconds

This commit is contained in:
2023-01-01 00:33:05 +01:00
commit 6246856fda
23 changed files with 2596 additions and 0 deletions

14
shell.nix Normal file
View File

@@ -0,0 +1,14 @@
# SPDX-FileCopyrightText: 2022 Jan Tojnar
# SPDX-License-Identifier: MIT
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
flake-compat = builtins.fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash;
};
flake = import flake-compat {
src = ./.;
};
in
flake.shellNix