Excise flakes in favour of npins and colmena
This commit is contained in:
parent
a2cf41eeff
commit
4c4a5f79c3
6 changed files with 118 additions and 49 deletions
25
hive.nix
Normal file
25
hive.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue