chore: Implement code review suggestions
This commit is contained in:
parent
3fe23fdc38
commit
e0eb0b4617
9 changed files with 203 additions and 14 deletions
11
shell.nix
11
shell.nix
|
|
@ -1,6 +1,15 @@
|
|||
# Use npins to pin nixpkgs dependencies
|
||||
# This makes it easier to cache build results
|
||||
{
|
||||
pkgs ? import <nixpkgs> { },
|
||||
sources ? import ./npins,
|
||||
system ? builtins.currentSystem,
|
||||
pkgs ? import sources.nixpkgs {
|
||||
inherit system;
|
||||
config = { };
|
||||
overlays = [ ];
|
||||
},
|
||||
}:
|
||||
# Create a nix shell with devenv (so `use devenv` can work in direnv/.envrc)
|
||||
pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
devenv
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue