feat(nix): Add basic Nix environment setup #2

Merged
jiriks74 merged 1 commit from nix into main 2024-04-19 05:50:16 +02:00
2 changed files with 12 additions and 0 deletions
Showing only changes of commit e85ce36872 - Show all commits

feat(nix): Add basic Nix environment setup

Jiří Štefka 2024-04-19 05:47:23 +02:00
Signed by: jiriks74
GPG key ID: 1D5E30D3DB2264DE

1
.envrc Normal file
View file

@ -0,0 +1 @@
use nix

11
default.nix Normal file
View 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
];
}