Files
nixos/hosts/linode/default.nix
T

43 lines
690 B
Nix
Raw Normal View History

2024-02-07 07:43:10 +00:00
{ pkgs, lib, ... }:
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
2024-03-04 21:03:06 +00:00
./matrix.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 02:33:46 +00:00
];
2024-02-07 07:43:10 +00:00
2023-12-19 19:07:02 +00:00
greg = {
home = false;
linode.enable = true;
tailscale.enable = true;
};
2024-02-07 07:43:10 +00:00
programs.ssh.extraConfig = lib.strings.concatStringsSep "\n" [
"Host chronicles.shire-zebra.ts.net"
" User backup"
" IdentityFile /etc/ssh/backup_ed25519"
" StrictHostKeyChecking no"
" UserKnownHostsFile /dev/null"
];
2023-12-19 19:07:02 +00:00
networking = {
hostName = "linode";
domain = "thehellings.com";
nameservers = [
"100.88.91.27"
];
};
2024-02-07 07:43:10 +00:00
2023-09-08 04:28:15 +00:00
environment.systemPackages = with pkgs; [
2023-12-19 19:07:02 +00:00
bind
2023-09-08 04:28:15 +00:00
graphviz
nix-du
2024-02-16 07:35:50 +00:00
pgloader
2023-09-08 04:28:15 +00:00
];
2022-04-12 02:33:46 +00:00
}