mirror of
https://git.sr.ht/~magic_rb/cluster
synced 2024-11-22 08:04:20 +01:00
Set NixNG and website to actually follow the inputs
Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
parent
168c57b745
commit
c6a99fb7eb
53
flake.lock
53
flake.lock
|
@ -18,7 +18,9 @@
|
|||
},
|
||||
"nixng": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs"
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1622759867,
|
||||
|
@ -36,7 +38,9 @@
|
|||
},
|
||||
"nixng_2": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs_3"
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1619975252,
|
||||
|
@ -52,19 +56,6 @@
|
|||
}
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1617271991,
|
||||
"narHash": "sha256-VdzjIQaT1FtycNid0iPSVr44Jrstoox6QRLrwCY1uG0=",
|
||||
"path": "/nix/store/p86a44r69akjvyg0nid33kh9mg15h9lq-source",
|
||||
"rev": "da7f4c4842520167f65c20ad75ecdbd14e27ae91",
|
||||
"type": "path"
|
||||
},
|
||||
"original": {
|
||||
"id": "nixpkgs",
|
||||
"type": "indirect"
|
||||
}
|
||||
},
|
||||
"nixpkgs_2": {
|
||||
"locked": {
|
||||
"lastModified": 1623215930,
|
||||
"narHash": "sha256-pr9Bx31IJvqCzSA/t0NCmCopJ3+HgeZmUFaxItLKHYA=",
|
||||
|
@ -80,32 +71,6 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"nixpkgs_3": {
|
||||
"locked": {
|
||||
"lastModified": 1617271991,
|
||||
"narHash": "sha256-VdzjIQaT1FtycNid0iPSVr44Jrstoox6QRLrwCY1uG0=",
|
||||
"path": "/nix/store/p86a44r69akjvyg0nid33kh9mg15h9lq-source",
|
||||
"rev": "da7f4c4842520167f65c20ad75ecdbd14e27ae91",
|
||||
"type": "path"
|
||||
},
|
||||
"original": {
|
||||
"id": "nixpkgs",
|
||||
"type": "indirect"
|
||||
}
|
||||
},
|
||||
"nixpkgs_4": {
|
||||
"locked": {
|
||||
"lastModified": 1614447571,
|
||||
"narHash": "sha256-kHshBYBAAL0sx7DwwrPyfvtUwidQ9aWXy0XrL5RQFhY=",
|
||||
"path": "/nix/store/fsfirablmv207i01zz3zsd20nkd0cbcq-source",
|
||||
"rev": "d303eee16ce8dee5c0b5b8e5f6323f561c189ec5",
|
||||
"type": "path"
|
||||
},
|
||||
"original": {
|
||||
"id": "nixpkgs",
|
||||
"type": "indirect"
|
||||
}
|
||||
},
|
||||
"org-thtml": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
|
@ -125,7 +90,7 @@
|
|||
"root": {
|
||||
"inputs": {
|
||||
"nixng": "nixng",
|
||||
"nixpkgs": "nixpkgs_2",
|
||||
"nixpkgs": "nixpkgs",
|
||||
"website": "website"
|
||||
}
|
||||
},
|
||||
|
@ -133,7 +98,9 @@
|
|||
"inputs": {
|
||||
"emacs-htmlize": "emacs-htmlize",
|
||||
"nixng": "nixng_2",
|
||||
"nixpkgs": "nixpkgs_4",
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
],
|
||||
"org-thtml": "org-thtml"
|
||||
},
|
||||
"locked": {
|
||||
|
|
10
flake.nix
10
flake.nix
|
@ -2,8 +2,14 @@
|
|||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-21.05";
|
||||
|
||||
nixng.url = "git+https://gitea.redalder.org/Magic_RB/NixNG";
|
||||
website.url = "git+https://gitea.redalder.org/Magic_RB/website";
|
||||
nixng = {
|
||||
url = "git+https://gitea.redalder.org/Magic_RB/NixNG";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
website = {
|
||||
url = "git+https://gitea.redalder.org/Magic_RB/website";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, nixng, ... }@inputs:
|
||||
|
|
Loading…
Reference in a new issue