chore: Implement code review suggestions

This commit is contained in:
Piotr Gaczkowski 2026-04-13 10:53:07 +02:00
parent 3fe23fdc38
commit e0eb0b4617
9 changed files with 203 additions and 14 deletions

View file

@ -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