Files
nixos/hosts/linode/default.nix
T

25 lines
412 B
Nix

{ pkgs, ... }:
{
imports = [
./git.nix
./hardware-configuration.nix
./podman.nix
./nextcloud.nix
./nginx.nix
./postgres.nix
./synapse.nix
];
greg.home = false;
greg.linode.enable = true;
greg.tailscale.enable = true;
networking.hostName = "linode";
networking.domain = "thehellings.com";
environment.systemPackages = with pkgs; [
forgejo
gitea-actions-runner
graphviz
nix-du
];
}