1
0
Fork 0

pin nixpkgs

This commit is contained in:
ibizaman 2023-03-15 00:06:23 -07:00
parent 24a23ed3d7
commit 81ed391e5f

View file

@ -1,4 +1,12 @@
{ pkgs ? import <nixpkgs> {}
{ pkgs ? import (builtins.fetchGit {
# Descriptive name to make the store path easier to identify
name = "nixos-21.11-2023-03-15";
url = "https://github.com/nixos/nixpkgs/";
# Commit hash for nixos-unstable as of 2018-09-12
# `git ls-remote https://github.com/nixos/nixpkgs nixos-unstable`
ref = "refs/tags/21.11";
rev = "506445d88e183bce80e47fc612c710eb592045ed";
}) {}
}:
let
utils = pkgs.callPackage ./utils.nix {};