treewide: move all deployment keys to flake.nix

This commit is contained in:
Katherina Walshe-Grey 2024-09-18 03:06:48 +01:00
parent 32dabca83f
commit 9f6d0fbaf8
7 changed files with 26 additions and 17 deletions

View file

@ -78,6 +78,32 @@
yevaud.imports = [ ./hosts/yevaud ];
orm.imports = [ ./hosts/orm ];
kalessin.imports = [ ./hosts/kalessin ];
kilgharrah.deployment = {
allowLocalDeployment = true;
targetHost = null; # disallow remote deployment
};
tohru.deployment = {
allowLocalDeployment = true;
targetHost = null; # disallow remote deployment
};
yevaud.deployment = {
targetHost = "yevaud.birdsong.network";
targetUser = null;
};
orm.deployment = {
targetHost = "orm.birdsong.network";
targetUser = null;
};
kalessin.deployment = {
targetHost = "kalessin.birdsong.network";
targetUser = null;
buildOnTarget = true;
};
};
# TODO: have this work on other systems too