Files
nixos/hosts/linode/default.nix
T

16 lines
248 B
Nix
Raw Normal View History

2022-04-12 02:33:46 +00:00
{ ... }:
{
imports = [
2022-04-19 17:27:40 +00:00
./hardware-configuration.nix
2022-04-13 06:51:45 +00:00
./nextcloud.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-25 22:25:04 -05:00
greg.home = false;
2022-04-25 22:29:44 -05:00
greg.linode.enable = true;
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
}