Mabon and Ostara host targets.

This commit is contained in:
kat witch 2021-07-06 01:14:44 +01:00
parent 6da779abec
commit e22262f771
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
5 changed files with 30 additions and 30 deletions

View file

@ -0,0 +1,21 @@
{ lib, config, ... }: with lib; {
deploy.targets.mabon = {
nodeNames = lib.singleton "mabon";
tf = {
resources.mabon = {
provider = "null";
type = "resource";
connection = {
port = 62954;
host = "192.168.1.119";
};
};
};
};
network.nodes.mabon = {
imports = lib.hostImport "mabon";
networking = {
hostName = "mabon";
};
};
}

View file

@ -1,12 +0,0 @@
{ config, hosts, ... }: {
config = {
resources.mabon = {
provider = "null";
type = "resource";
connection = {
port = 62954;
host = "192.168.1.119";
};
};
};
}

View file

@ -1,6 +1,7 @@
{ lib, config, ... }: with lib; {
config = {
deploy.targets.personal = {
deploy.targets.ostara = {
nodeNames = singleton "ostara";
tf = {
resources.ostara = {
provider = "null";
@ -11,11 +12,11 @@
};
};
};
network.nodes.samhain = {
imports = lib.hostImport "samhain";
networking = {
hostName = "samhain";
};
};
network.nodes.ostara = {
imports = lib.hostImport "ostara";
networking = {
hostName = "ostara";
};
};
};

View file

@ -1,12 +0,0 @@
{ config, hosts, ... }: {
config = {
resources.ostara = {
provider = "null";
type = "resource";
connection = {
port = 62954;
host = "192.168.1.245";
};
};
};
}

View file

@ -33,6 +33,8 @@ let
./config/hosts/athame/meta.nix
./config/hosts/samhain/meta.nix
./config/hosts/yule/meta.nix
./config/hosts/mabon/meta.nix
./config/hosts/ostara/meta.nix
];
specialArgs = {
inherit sources profiles users;