nix: create initial flake
This commit is contained in:
parent
c21cb47a54
commit
057fe88a21
3 changed files with 142 additions and 0 deletions
17
devShells/flake-module.nix
Normal file
17
devShells/flake-module.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
perSystem =
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
devShells.default = pkgs.mkShell {
|
||||
packages = [
|
||||
pkgs.nil
|
||||
pkgs.nixfmt-rfc-style
|
||||
pkgs.cargo
|
||||
pkgs.rust-analyzer
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue