feat: Add files for nix

This commit is contained in:
Jiří Štefka 2024-09-22 22:23:41 +02:00
parent ff49aa4da3
commit 7d2df472a6
Signed by: jiriks74
GPG Key ID: 1D5E30D3DB2264DE
2 changed files with 12 additions and 0 deletions

1
.envrc Normal file

@ -0,0 +1 @@
use nix

11
default.nix Normal file

@ -0,0 +1,11 @@
{ pkgs ? (import <nixpkgs> {
config.allowUnfree = true;
}),
}:
pkgs.mkShell {
pure = true;
packages = with pkgs; [
# Choose the build tools that you need
act
];
}