Files
nixos/hosts/linode/default.nix
T

13 lines
179 B
Nix
Raw Normal View History

2022-04-12 02:33:46 +00:00
{ ... }:
{
imports = [
../../profiles/linode.nix
2022-04-12 15:11:56 +00:00
./nginx.nix
2022-04-12 03:00:04 +00:00
./postgres.nix
2022-04-12 15:11:56 +00:00
./synapse.nix
2022-04-12 02:33:46 +00:00
];
2022-04-12 03:00:04 +00:00
networking.hostName = "linode";
2022-04-12 15:11:56 +00:00
networking.domain = "thehellings.com";
2022-04-12 02:33:46 +00:00
}