mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-06 01:38:06 +00:00
[Overlays/Packages] Pin nixos-unstable to specific commit
This commit is contained in:
parent
d31aacc327
commit
94a5259b68
1 changed files with 5 additions and 1 deletions
|
|
@ -2,7 +2,11 @@
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.aviallon.overlays;
|
cfg = config.aviallon.overlays;
|
||||||
unstable = import (builtins.fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz") {
|
unstable = import (fetchGit {
|
||||||
|
url = "https://github.com/NixOS/nixpkgs.git";
|
||||||
|
rev = "c573e3eaa8717fbabab3f9a58bfed637fb441eac";
|
||||||
|
ref = "nixos-unstable";
|
||||||
|
}) {
|
||||||
config = config.nixpkgs.config // { allowUnfree = true; } ;
|
config = config.nixpkgs.config // { allowUnfree = true; } ;
|
||||||
overlays = config.nixpkgs.overlays;
|
overlays = config.nixpkgs.overlays;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue