Files
nixos/hosts/linode/default.nix
T

33 lines
462 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
];
2023-12-19 19:07:02 +00:00
greg = {
home = false;
linode.enable = true;
tailscale.enable = true;
};
networking = {
hostName = "linode";
domain = "thehellings.com";
nameservers = [
"100.88.91.27"
];
};
2023-09-08 04:28:15 +00:00
environment.systemPackages = with pkgs; [
2023-12-19 19:07:02 +00:00
bind
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
}