mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
pin nixpkgs again
This commit is contained in:
parent
935feb7496
commit
236e08da9c
2 changed files with 31 additions and 2 deletions
27
flake.lock
Normal file
27
flake.lock
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1671788672,
|
||||
"narHash": "sha256-tLkPxJuos3jki2f/TZdHn+NuMQAzN9s2E4QudylQLg0=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "2c74fcd6c5fc14a61de158fb796243543f46b217",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"ref": "nixpkgs-unstable",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
|
@ -1,8 +1,10 @@
|
|||
{
|
||||
description = "Disko - declarative disk partitioning";
|
||||
|
||||
# don't lock to give precedence to a USB live-installer's registry
|
||||
inputs.nixpkgs.url = "nixpkgs";
|
||||
# FIXME: in future we don't want lock here to give precedence to a USB live-installer's registry,
|
||||
# but garnix currently does not allow this.
|
||||
#inputs.nixpkgs.url = "nixpkgs";
|
||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||
|
||||
outputs = { self, nixpkgs, ... }: let
|
||||
supportedSystems = [
|
||||
|
|
Loading…
Reference in a new issue