flake: follow unstable with packages

This commit is contained in:
Aaron Bieber 2022-11-16 20:28:42 -07:00
parent 5f7411f7ef
commit 584577947d
No known key found for this signature in database
2 changed files with 28 additions and 68 deletions

View File

@ -122,7 +122,9 @@
},
"microca": {
"inputs": {
"nixpkgs": "nixpkgs"
"nixpkgs": [
"unstable"
]
},
"locked": {
"lastModified": 1662300001,
@ -154,21 +156,6 @@
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1662019588,
"narHash": "sha256-oPEjHKGGVbBXqwwL+UjsveJzghWiWV0n9ogo1X6l4cw=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "2da64a81275b68fdad38af669afeda43d401e94b",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixos-unstable",
"type": "indirect"
}
},
"nixpkgs-22_05": {
"locked": {
"lastModified": 1661656705,
@ -185,51 +172,6 @@
"type": "github"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1664178928,
"narHash": "sha256-+WVCZH/3Ifef4Da9N1tkGnmfX0QwtkJQz013QuImu10=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b542cc75fa03a3a29350d4c3b69739e946268a93",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixos-22.05",
"type": "indirect"
}
},
"nixpkgs_3": {
"locked": {
"lastModified": 1668417584,
"narHash": "sha256-yeuEyxKPwsm5fIHN49L/syn9g5coxnPp3GsVquhrv5A=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "013fcdd106823416918004bb684c3c186d3c460f",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixos-unstable",
"type": "indirect"
}
},
"nixpkgs_4": {
"locked": {
"lastModified": 1666610816,
"narHash": "sha256-q4F2VNe5bpxXOvp16DyLwE1SgNZMbNO29ZQJPIomedg=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "6107f97012a0c134c5848125b5aa1b149b76d2c9",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixos-22.05",
"type": "indirect"
}
},
"peerix": {
"inputs": {
"flake-compat": "flake-compat",
@ -343,7 +285,9 @@
},
"taskobs": {
"inputs": {
"nixpkgs": "nixpkgs_2"
"nixpkgs": [
"unstable"
]
},
"locked": {
"lastModified": 1666015562,
@ -361,7 +305,9 @@
},
"tsvnstat": {
"inputs": {
"nixpkgs": "nixpkgs_3"
"nixpkgs": [
"unstable"
]
},
"locked": {
"lastModified": 1668655090,
@ -430,7 +376,9 @@
},
"xintray": {
"inputs": {
"nixpkgs": "nixpkgs_4"
"nixpkgs": [
"unstable"
]
},
"locked": {
"lastModified": 1668365827,

View File

@ -29,10 +29,22 @@
flake = false;
};
microca = { url = "github:qbit/microca"; };
taskobs = { url = "github:qbit/taskobs"; };
xintray = { url = "github:qbit/xintray"; };
tsvnstat = { url = "github:qbit/tsvnstat"; };
microca = {
url = "github:qbit/microca";
inputs.nixpkgs.follows = "unstable";
};
taskobs = {
url = "github:qbit/taskobs";
inputs.nixpkgs.follows = "unstable";
};
xintray = {
url = "github:qbit/xintray";
inputs.nixpkgs.follows = "unstable";
};
tsvnstat = {
url = "github:qbit/tsvnstat";
inputs.nixpkgs.follows = "unstable";
};
mcchunkie = {
url = "github:qbit/mcchunkie";