rename host-001
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing

This commit is contained in:
Hendrik Sokolowski 2023-04-26 21:22:25 +02:00
parent 96df48c33a
commit 6cddcdd4a2
8 changed files with 8 additions and 8 deletions

View file

@ -121,7 +121,7 @@
suites = with profiles; rec {
base = [ base-user users.root users.barkeeper ];
host_001_momo_koeln = base;
host-001-momo-koeln = base;
};
};
};
@ -149,7 +149,7 @@
homeConfigurations = digga.lib.mkHomeConfigurations self.nixosConfigurations;
deploy.nodes = digga.lib.mkDeployNodes self.nixosConfigurations {
host_001_momo_koeln = {
host-001-momo-koeln = {
hostname = "80.244.242.4";
sshUser = "barkeeper";
};

View file

@ -0,0 +1,6 @@
{ suites, ... }:
{
imports = [
./host-001-momo-koeln.nix
] ++ suites.host-001-momo-koeln;
}

View file

@ -1,6 +0,0 @@
{ suites, ... }:
{
imports = [
./host_001_momo_koeln.nix
] ++ suites.host_001_momo_koeln;
}