Drop phobos.

main
Joshua Potter 2024-01-18 19:30:02 -07:00
parent 3a30ffd679
commit 25eb9749c4
3 changed files with 0 additions and 38 deletions

View File

@ -1,6 +1,5 @@
keys: keys:
- &admin_jrpotter age1huyyxsy4g0e5svmcejxvvdjnnk6qkulgd3qfpue59exnfrnqzudspxnn62 - &admin_jrpotter age1huyyxsy4g0e5svmcejxvvdjnnk6qkulgd3qfpue59exnfrnqzudspxnn62
- &server_phobos age16twzd97nh7tstk5meh277w02le6dxqmv7wzrjlemn87n36dzlyfq7uusj2
- &server_thebe age1pjgqvdyzxz30rxvu3zysjpmxrjjsvklggfepswhmwdaunx0kg3vsfept24 - &server_thebe age1pjgqvdyzxz30rxvu3zysjpmxrjjsvklggfepswhmwdaunx0kg3vsfept24
creation_rules: creation_rules:
- path_regex: .* - path_regex: .*

View File

@ -33,7 +33,6 @@
nodeNixpkgs = { nodeNixpkgs = {
framework = tapir.pkgs; framework = tapir.pkgs;
deimos = tapir.pkgs; deimos = tapir.pkgs;
phobos = tapir.pkgs;
thebe = tapir.pkgs; thebe = tapir.pkgs;
}; };
nodeSpecialArgs = { nodeSpecialArgs = {
@ -43,9 +42,6 @@
deimos = { deimos = {
inherit (tapir) sops-nix; inherit (tapir) sops-nix;
}; };
phobos = {
inherit (tapir) sops-nix;
};
thebe = { thebe = {
inherit (tapir) sops-nix; inherit (tapir) sops-nix;
}; };
@ -65,7 +61,6 @@
# Remote machines. Deploy using `colmena apply` # Remote machines. Deploy using `colmena apply`
deimos.imports = [ ./hive/deimos ]; deimos.imports = [ ./hive/deimos ];
phobos.imports = [ ./hive/phobos ];
thebe.imports = [ ./hive/thebe ]; thebe.imports = [ ./hive/thebe ];
}; };

View File

@ -1,32 +0,0 @@
{ sops-nix, lib, ... }:
{
imports = lib.optional (builtins.pathExists ./do-userdata.nix) ./do-userdata.nix ++ [
sops-nix.nixosModules.sops
../../digital-ocean/configuration.nix
];
deployment.targetHost = "143.198.142.171";
networking = {
hostName = "phobos";
firewall = {
enable = true;
allowedTCPPorts = [ 80 443 ];
};
};
programs.mosh.enable = true;
services = {
nginx.enable = true;
openssh.enable = true;
postgresql.enable = true;
};
security.acme = {
acceptTerms = true;
defaults.email = "jrpotter2112@gmail.com";
};
system.stateVersion = "23.11";
}