mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
rename unstable channel
This commit is contained in:
parent
a60071039d
commit
541f853c9d
3 changed files with 10 additions and 25 deletions
25
flake.lock
25
flake.lock
|
@ -2,23 +2,23 @@
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1617673944,
|
"lastModified": 1617082367,
|
||||||
"narHash": "sha256-0GYlbpsmTvt0jUUM47MfCLqBZBBsOqj1lwo4a/anQfY=",
|
"narHash": "sha256-W0cQPGjc4IVzryaGycuoS8KZkXafS1P23w/fcKLoD5Y=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "7d10c949fa3cb4d9f44e6a8017b89f55bf58f07d",
|
"rev": "04a2b269d8921505a2969fc9ec25c1f517f2b307",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"id": "nixpkgs",
|
"id": "nixpkgs",
|
||||||
|
"ref": "nixos-unstable",
|
||||||
"type": "indirect"
|
"type": "indirect"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
"stable2009": "stable2009",
|
"stable2009": "stable2009"
|
||||||
"unstable": "unstable"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"stable2009": {
|
"stable2009": {
|
||||||
|
@ -35,21 +35,6 @@
|
||||||
"ref": "nixos-20.09",
|
"ref": "nixos-20.09",
|
||||||
"type": "indirect"
|
"type": "indirect"
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"unstable": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1617082367,
|
|
||||||
"narHash": "sha256-W0cQPGjc4IVzryaGycuoS8KZkXafS1P23w/fcKLoD5Y=",
|
|
||||||
"owner": "NixOS",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "04a2b269d8921505a2969fc9ec25c1f517f2b307",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"id": "nixpkgs",
|
|
||||||
"ref": "nixos-unstable",
|
|
||||||
"type": "indirect"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"root": "root",
|
"root": "root",
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
inputs.unstable.url = "nixpkgs/nixos-unstable";
|
inputs.nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||||
inputs.stable2009.url = "nixpkgs/nixos-20.09";
|
inputs.stable2009.url = "nixpkgs/nixos-20.09";
|
||||||
|
|
||||||
outputs = { self, nixpkgs, ... }@inputs: {
|
outputs = { self, nixpkgs, stable2009 }: {
|
||||||
nixosModule = { ... }: {
|
nixosModule = { ... }: {
|
||||||
imports = [ ./. ];
|
imports = [ ./. ];
|
||||||
config = { sconfig.flakes.enable = true; };
|
config = { sconfig.flakes.enable = true; };
|
||||||
};
|
};
|
||||||
nixosConfigurations = import ./hosts { inherit (inputs) unstable stable2009; };
|
nixosConfigurations = import ./hosts { inherit nixpkgs stable2009; };
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ unstable, stable2009 }:
|
{ nixpkgs, stable2009 }:
|
||||||
let
|
let
|
||||||
|
|
||||||
commonModules = [
|
commonModules = [
|
||||||
|
@ -29,5 +29,5 @@ let
|
||||||
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
vm = mkQemuSystem { name = "vm"; pkgs = unstable; };
|
vm = mkQemuSystem { name = "vm"; pkgs = nixpkgs; };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue