2022-07-27 01:11:07 +00:00
|
|
|
{ nixpkgs, home-manager, globals, ... }:
|
|
|
|
|
2022-10-01 16:21:34 +00:00
|
|
|
# System configuration for an Oracle free server
|
2022-10-04 00:45:05 +00:00
|
|
|
|
|
|
|
# How to install:
|
|
|
|
# https://blog.korfuri.fr/posts/2022/08/nixos-on-an-oracle-free-tier-ampere-machine/
|
|
|
|
|
2022-07-27 01:11:07 +00:00
|
|
|
nixpkgs.lib.nixosSystem {
|
2022-10-01 16:21:34 +00:00
|
|
|
system = "aarch64-linux";
|
2022-07-27 01:11:07 +00:00
|
|
|
specialArgs = { };
|
|
|
|
modules = [
|
2022-10-01 16:21:34 +00:00
|
|
|
(removeAttrs globals [ "mailServer" ])
|
2022-07-27 01:11:07 +00:00
|
|
|
home-manager.nixosModules.home-manager
|
|
|
|
{
|
2022-10-04 00:45:05 +00:00
|
|
|
gui.enable = false;
|
|
|
|
colorscheme = (import ../../modules/colorscheme/gruvbox);
|
|
|
|
|
|
|
|
# FQDNs for various services
|
2022-10-01 16:21:34 +00:00
|
|
|
networking.hostName = "oracle";
|
2022-10-02 14:48:51 +00:00
|
|
|
bookServer = "books.masu.rs";
|
2022-10-02 17:40:10 +00:00
|
|
|
streamServer = "stream.masu.rs";
|
2022-10-02 20:54:26 +00:00
|
|
|
nextcloudServer = "cloud.masu.rs";
|
2022-10-09 14:12:31 +00:00
|
|
|
transmissionServer = "download.masu.rs";
|
2022-10-14 13:08:13 +00:00
|
|
|
metricsServer = "metrics.masu.rs";
|
2022-10-04 00:45:05 +00:00
|
|
|
|
|
|
|
# Disable passwords, only use SSH key
|
2022-10-02 14:48:51 +00:00
|
|
|
passwordHash = null;
|
2022-10-01 16:21:34 +00:00
|
|
|
publicKey =
|
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB+AbmjGEwITk5CK9y7+Rg27Fokgj9QEjgc9wST6MA3s";
|
2022-10-04 00:45:05 +00:00
|
|
|
|
2022-10-10 03:13:16 +00:00
|
|
|
# Nextcloud backup config
|
2022-10-08 15:52:05 +00:00
|
|
|
backupS3 = {
|
|
|
|
endpoint = "s3.us-west-002.backblazeb2.com";
|
|
|
|
bucket = "noahmasur-backup";
|
|
|
|
accessKeyId = "0026b0e73b2e2c80000000004";
|
|
|
|
};
|
|
|
|
|
2022-10-10 03:13:16 +00:00
|
|
|
# Grant access to Jellyfin directories from Nextcloud
|
2022-10-04 00:45:05 +00:00
|
|
|
users.users.nextcloud.extraGroups = [ "jellyfin" ];
|
2022-10-10 03:13:16 +00:00
|
|
|
|
|
|
|
# Wireguard config for Transmission
|
|
|
|
networking.wireguard.interfaces.wg0 = {
|
|
|
|
|
|
|
|
# The local IPs for this machine within the Wireguard network
|
|
|
|
# Any inbound traffic bound for these IPs should be kept on localhost
|
|
|
|
ips = [ "10.66.13.200/32" "fc00:bbbb:bbbb:bb01::3:dc7/128" ];
|
|
|
|
|
|
|
|
peers = [{
|
|
|
|
|
|
|
|
# Identity of Wireguard target peer (VPN)
|
|
|
|
publicKey = "bOOP5lIjqCdDx5t+mP/kEcSbHS4cZqE0rMlBI178lyY=";
|
|
|
|
|
|
|
|
# The public internet address of the target peer
|
|
|
|
endpoint = "86.106.143.132:51820";
|
|
|
|
|
|
|
|
# Which outgoing IP ranges should be sent through Wireguard
|
|
|
|
allowedIPs = [ "0.0.0.0/0" "::0/0" ];
|
|
|
|
|
|
|
|
# Send heartbeat signal within the network
|
|
|
|
persistentKeepalive = 25;
|
|
|
|
|
|
|
|
}];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
# VPN port forwarding
|
|
|
|
services.transmission.settings.peer-port = 57599;
|
|
|
|
|
|
|
|
# Grant access to Transmission directories from Jellyfin
|
|
|
|
users.users.jellyfin.extraGroups = [ "transmission" ];
|
2022-07-27 01:11:07 +00:00
|
|
|
}
|
2022-10-01 16:29:16 +00:00
|
|
|
./hardware-configuration.nix
|
2022-07-27 01:11:07 +00:00
|
|
|
../common.nix
|
|
|
|
../../modules/nixos
|
2022-10-01 16:24:44 +00:00
|
|
|
../../modules/hardware/server.nix
|
2022-10-01 16:21:34 +00:00
|
|
|
../../modules/services/sshd.nix
|
2022-10-01 21:39:36 +00:00
|
|
|
../../modules/services/calibre.nix
|
2022-10-02 17:40:10 +00:00
|
|
|
../../modules/services/jellyfin.nix
|
2022-10-02 20:54:26 +00:00
|
|
|
../../modules/services/nextcloud.nix
|
2022-10-15 19:00:37 +00:00
|
|
|
../../modules/services/cloudflare.nix
|
2022-10-09 14:12:31 +00:00
|
|
|
../../modules/services/transmission.nix
|
2022-10-14 04:01:41 +00:00
|
|
|
../../modules/services/prometheus.nix
|
2022-10-10 23:09:32 +00:00
|
|
|
../../modules/gaming/minecraft-server.nix
|
2022-07-27 01:11:07 +00:00
|
|
|
];
|
|
|
|
}
|