initial commit

This commit is contained in:
Charlie Root 2025-03-27 11:09:41 +01:00
commit 578ddba8c1
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E
6 changed files with 117 additions and 0 deletions

16
flake.nix Normal file
View file

@ -0,0 +1,16 @@
{
description = "kathara venv";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
systems.url = "github:nix-systems/default-linux";
};
outputs = inputs: let
eachSystem = inputs.nixpkgs.lib.genAttrs (import inputs.systems);
pkgsFor = inputs.nixpkgs.legacyPackages;
in {
devShells = eachSystem (system: {
default = pkgsFor.${system}.callPackage ./shell.nix {};
});
};
}