Files
nixos/hosts/linode/default.nix
T

25 lines
412 B
Nix
Raw Normal View History

2023-09-08 04:28:15 +00:00
{ pkgs, ... }:
2022-04-12 02:33:46 +00:00
{
imports = [
2022-09-23 01:29:05 +00:00
./git.nix
2022-04-19 17:27:40 +00:00
./hardware-configuration.nix
2022-10-06 22:00:41 +00:00
./podman.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-06-12 04:59:12 +00:00
greg.tailscale.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";
2023-09-08 04:28:15 +00:00
environment.systemPackages = with pkgs; [
2023-12-12 01:01:58 +00:00
forgejo
gitea-actions-runner
2023-09-08 04:28:15 +00:00
graphviz
nix-du
];
2022-04-12 02:33:46 +00:00
}