diff options
| author | 2026-01-24 16:20:57 +0000 | |
|---|---|---|
| committer | 2026-01-24 16:20:57 +0000 | |
| commit | f01039b37bd889b3617337e4ed55bed81ab6df8d (patch) | |
| tree | c183191cee3a483ee60a1264b7024cf33eabcb1e | |
| parent | pkgs: try to conform to <https://nix.dev/guides/best-practices.html#with-scopes> (diff) | |
| signature | ||
default.nix: come somewhat closer to reproducibility by pinning nixpkgs
| -rw-r--r-- | default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix index 18a2876..49d1e29 100644 --- a/default.nix +++ b/default.nix @@ -1,4 +1,4 @@ -{ pkgs ? import <nixpkgs> args, ... }@args: +{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/e4bae1bd10c9c57b2cf517953ab70060a828ee6f.tar.gz") { config = {}; overlays = []; }, ... }: pkgs.callPackage ./pkgs { } // { |
