initial commit

This commit is contained in:
garionion 2021-03-13 15:32:44 +01:00
commit 0e480bb6b6
36 changed files with 13615 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{
arion = import ../../hosts/arion/configuration.nix;
geon = import ../../hosts/geon/configuration.nix;
pion = import ../../hosts/pion/configuration.nix;
scotty-router = import ../../hosts/scotty-router/configuration.nix;
tailpipe = import ../../hosts/tailpipe/configuration.nix;
dyon = import ../../hosts/dyon/configuration.nix;
kaon = import ../../hosts/kaon/configuration.nix;
}

View file

@ -0,0 +1,23 @@
{
arion = { config, pkgs, ... }:{
deployment.targetHost = "arion.net.entr0py.de";
};
geon = { config, pkgs, ... }:{
deployment.targetHost = "geon.net.entr0py.de";
};
pion = { config, pkgs, ... }:{
deployment.targetHost = "pion.net.entr0py.de";
};
scotty-router = { config, pkgs, ... }:{
deployment.targetHost = "scotty-router";
};
tailpipe = { config, pkgs, ... }:{
deployment.targetHost = "tailpipe.net.entr0py.de";
};
dyon = { config, pkgs, ... }:{
deployment.targetHost = "dyon.net.entr0py.de";
};
kaon = { config, pkgs, ... }:{
deployment.targetHost = "kaon.net.entr0py.de";
};
}