Initial commit

This commit is contained in:
Luka Korošec 2025-06-19 17:35:17 +02:00
commit 4b931208b6
Signed by: Pizmovc
GPG key ID: 4E1338930C2F3572
2 changed files with 87 additions and 0 deletions

26
flake.nix Normal file
View file

@ -0,0 +1,26 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
...
}@inputs:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
buildInputs = [];
shellHook = "";
};
}
);
}