Flake Registry #122
2 changed files with 54 additions and 0 deletions
36
cluster/services/flake-reegistry/default.nix
Normal file
36
cluster/services/flake-reegistry/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{ lib, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
ways.registry.static = { depot, pkgs, ... }: pkgs.writeTextDir "flake-registry.json" (let
|
||||||
|
flakes = {
|
||||||
|
depot = {
|
||||||
|
type = "tarball";
|
||||||
|
url = "https://forge.${depot.lib.meta.domain}/${depot.lib.meta.domain}/depot/archive/master.tar.gz";
|
||||||
|
};
|
||||||
|
depot-nixpkgs = {
|
||||||
|
type = "github";
|
||||||
|
owner = "NixOS";
|
||||||
|
repo = "nixpkgs";
|
||||||
|
inherit (depot.inputs.nixpkgs.sourceInfo) rev narHash lastModified;
|
||||||
|
};
|
||||||
|
blank = {
|
||||||
|
type = "github";
|
||||||
|
owner = "divnix";
|
||||||
|
repo = "blank";
|
||||||
|
inherit (depot.inputs.blank.sourceInfo) rev narHash lastModified;
|
||||||
|
};
|
||||||
|
} // import ./extra-flakes.nix;
|
||||||
|
in builtins.toJSON {
|
||||||
|
version = 2;
|
||||||
|
flakes = lib.pipe flakes [
|
||||||
|
(lib.attrsToList)
|
||||||
|
(map (f: {
|
||||||
|
from = {
|
||||||
|
type = "indirect";
|
||||||
|
id = f.name;
|
||||||
|
};
|
||||||
|
to = f.value;
|
||||||
|
}))
|
||||||
|
];
|
||||||
|
});
|
||||||
|
}
|
18
cluster/services/flake-reegistry/extra-flakes.nix
Normal file
18
cluster/services/flake-reegistry/extra-flakes.nix
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
let
|
||||||
|
github = owner: repo: {
|
||||||
|
type = "github";
|
||||||
|
inherit owner repo;
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
# own
|
||||||
|
hyprspace = github "hyprspace" "hyprspace";
|
||||||
|
ai = github "nixified-ai" "flake";
|
||||||
|
nix-super = github "privatevoid-net" "nix-super";
|
||||||
|
nixpak = github "nixpak" "nixpak";
|
||||||
|
|
||||||
|
# other
|
||||||
|
nix = github "NixOS" "nix";
|
||||||
|
flake-parts = github "hercules-ci" "flake-parts";
|
||||||
|
home-manager = github "nix-community" "home-manager";
|
||||||
|
dream2nix = github "nix-community" "dream2nix";
|
||||||
|
}
|
Loading…
Reference in a new issue