Excise flakes in favour of npins and colmena

This commit is contained in:
Katherina Walshe-Grey 2024-05-28 19:50:39 +01:00
parent a2cf41eeff
commit 4c4a5f79c3
6 changed files with 118 additions and 49 deletions

25
hive.nix Normal file
View file

@ -0,0 +1,25 @@
let sources = import ./npins;
in {
meta = {
nixpkgs = sources.nixpkgs;
};
defaults = { pkgs, ... }: {
imports = [ ./pinning.nix ];
deployment.replaceUnknownProfiles = false;
};
tohru = { name, nodes, ... }: {
deployment = {
allowLocalDeployment = true;
targetHost = null;
};
imports = [ ./hosts/tohru/configuration.nix ];
};
yevaud = {
deployment.targetHost = "yevaud.birdsong.network";
imports = [ ./hosts/yevaud/configuration.nix ];
};
}