Merge pull request 'feat(nix): Add basic Nix environment setup' (#2) from nix into main
Reviewed-on: #2
This commit is contained in:
commit
9fa30f7e52
1
.envrc
Normal file
1
.envrc
Normal file
@ -0,0 +1 @@
|
||||
use nix
|
11
default.nix
Normal file
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
|
||||
];
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user