Initial commit

This commit is contained in:
2023-02-25 01:16:39 +01:00
commit f1e713e42c
10 changed files with 843 additions and 0 deletions

14
flake.nix Normal file
View File

@@ -0,0 +1,14 @@
{
description = "";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
devShell = import ./shell.nix { inherit pkgs; };
}
);
}