1
0
Fork 0
nix-configuration/hosts/Hevana/default.nix

249 lines
7 KiB
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
let
# Do not change this value! This tracks when NixOS was installed on your system.
stateVersion = "24.11";
hostName = "Hevana";
# Where to store service files
services-root = "/storage/services";
# Credentials for interacting with the Namecheap API
2024-06-25 14:27:58 -04:00
namecheapCredentials = {
"NAMECHEAP_API_USER_FILE" = "${pkgs.writeText "namecheap-api-user" ''
${config.secrets.networking.namecheap.api.user}
''}";
"NAMECHEAP_API_KEY_FILE" = "${pkgs.writeText "namecheap-api-key" ''
${config.secrets.networking.namecheap.api.key}
''}";
};
# List of subdomains to add to the TLS certificate
subdomains = with config.secrets.services; [
forgejo.url
gremlin-lab.url
jellyfin.url
netdata.url
qbittorrent.url
];
2024-02-29 09:53:34 -05:00
in
{
imports = [ ./hardware-configuration.nix ];
system.stateVersion = stateVersion;
networking.hostName = hostName;
2024-02-29 09:53:34 -05:00
###*** Configure your system below this line. ***###
2024-09-08 13:42:01 -04:00
# Set your time zone.
# To see all available timezones, run `timedatectl list-timezones`.
time.timeZone = "America/New_York";
# Build Nix packages for other hosts.
# Runs every day at 4 AM
systemd = {
services."build-hosts" = {
serviceConfig = {
Type = "oneshot";
User = "root";
};
path = config.aux.system.corePackages;
script = ''
cd ${config.secrets.nixConfigFolder}
nh os build . --hostname Khanda
'';
};
timers."build-hosts" = {
wants = [ "network-online.target" ];
after = [ "network-online.target" ];
wantedBy = [ "timers.target" ];
timerConfig = {
OnCalendar = "04:00";
Persistent = true;
Unit = "build-hosts.service";
};
};
};
# Disable NetworkManager
networking.networkmanager.enable = lib.mkForce false;
# Configure the system.
aux.system = {
# Enable to allow unfree (e.g. closed source) packages.
# Some settings may override this (e.g. enabling Nvidia GPU support).
# https://nixos.org/manual/nixpkgs/stable/#sec-allow-unfree
allowUnfree = true;
# Enable Secure Boot support.
2024-06-24 18:19:27 -04:00
bootloader = {
enable = true;
secureboot.enable = true;
tpm2.enable = true;
};
# Change the default text editor. Options are "emacs", "nano", or "vim".
editor = "nano";
# Enable GPU support.
2024-06-24 13:08:18 -04:00
gpu.amd.enable = true;
2024-06-24 18:19:27 -04:00
# Enable support for primary RAID array
raid.storage.enable = true;
2024-06-24 18:19:27 -04:00
# Change how long old generations are kept for.
retentionPeriod = "30d";
2024-06-24 18:19:27 -04:00
services = {
2024-05-20 20:52:57 -04:00
acme = {
enable = true;
2024-05-20 20:56:48 -04:00
defaultEmail = config.secrets.users.aires.email;
2024-05-20 20:52:57 -04:00
certs = {
2024-09-02 11:06:57 -04:00
"${config.secrets.networking.domains.primary}" = {
2024-05-20 20:52:57 -04:00
dnsProvider = "namecheap";
extraDomainNames = subdomains;
webroot = null; # Required in order to prevent a failed assertion
2024-06-25 14:27:58 -04:00
credentialFiles = namecheapCredentials;
2024-05-20 20:52:57 -04:00
};
2024-09-02 11:06:57 -04:00
"${config.secrets.networking.domains.blog}" = {
dnsProvider = "namecheap";
webroot = null; # Required in order to prevent a failed assertion
2024-06-25 14:27:58 -04:00
credentialFiles = namecheapCredentials;
};
2024-05-20 20:52:57 -04:00
};
};
apcupsd = {
enable = true;
configText = builtins.readFile ./etc/apcupsd.conf;
};
2024-06-24 12:24:21 -04:00
autoUpgrade = {
2024-09-08 23:54:10 -04:00
enable = true;
pushUpdates = true; # Update automatically and push updates back up to Forgejo
2024-06-24 12:24:21 -04:00
configDir = config.secrets.nixConfigFolder;
onCalendar = "daily";
user = config.users.users.aires.name;
};
2024-09-14 16:05:10 -04:00
boinc = {
enable = false;
home = "${services-root}/boinc";
};
duplicacy-web = {
enable = true;
home = "/storage/backups/settings/Haven";
};
forgejo = {
enable = true;
home = "${services-root}/forgejo";
2024-06-25 14:13:15 -04:00
url = config.secrets.services.forgejo.url;
2024-06-04 14:18:45 -04:00
actions = {
enable = false;
2024-06-04 14:18:45 -04:00
token = config.secrets.services.forgejo.runner-token;
};
};
2024-09-06 12:57:11 -04:00
home-assistant = {
enable = false;
home = "${services-root}/home-assistant";
url = config.secrets.services.home-assistant.url;
};
jellyfin = {
enable = true;
home = "${services-root}/jellyfin";
url = config.secrets.services.jellyfin.url;
};
2024-09-15 14:39:26 -04:00
msmtp = {
enable = true;
accounts.default = {
host = config.secrets.services.msmtp.host;
user = config.secrets.services.msmtp.user;
password = config.secrets.services.msmtp.password;
auth = true;
tls = true;
tls_starttls = true;
port = 587;
from = "${config.networking.hostName}@${config.secrets.networking.domains.primary}";
};
aliases = {
text = ''
default: ${config.secrets.users.aires.email}
'';
mode = "0644";
};
};
netdata = {
enable = true;
type = "parent";
url = config.secrets.services.netdata.url;
auth = {
user = config.users.users.aires.name;
password = config.secrets.services.netdata.password;
apiKey = config.secrets.services.netdata.apiKey;
};
};
2024-05-20 20:52:57 -04:00
nginx = {
enable = true;
virtualHosts = {
2024-09-02 11:06:57 -04:00
"${config.secrets.networking.domains.primary}" = {
2024-05-20 20:52:57 -04:00
default = true;
enableACME = true; # Enable Let's Encrypt
locations."/" = {
# Catchall vhost, will redirect users to Forgejo
return = "301 https://${config.secrets.services.forgejo.url}";
2024-05-20 20:52:57 -04:00
};
};
2024-09-14 12:33:52 -04:00
"${config.secrets.networking.domains.blog}" = {
2024-09-02 11:06:57 -04:00
useACMEHost = config.secrets.networking.domains.blog;
forceSSL = true;
2024-09-02 11:06:57 -04:00
root = "${services-root}/nginx/sites/${config.secrets.networking.domains.blog}";
};
2024-05-24 11:56:23 -04:00
"${config.secrets.services.gremlin-lab.url}" = {
2024-09-02 11:06:57 -04:00
useACMEHost = config.secrets.networking.domains.primary;
2024-05-24 11:56:23 -04:00
forceSSL = true;
locations."/" = {
proxyPass = "http://${config.secrets.services.gremlin-lab.ip}";
proxyWebsockets = true;
extraConfig = "proxy_ssl_server_name on;";
};
};
2024-05-20 20:52:57 -04:00
};
};
qbittorrent = {
enable = true;
home = "${services-root}/qbittorrent";
url = config.secrets.services.qbittorrent.url;
port = "8090";
vpn = {
enable = true;
privateKey = config.secrets.services.protonvpn.privateKey;
};
};
2024-05-20 20:52:57 -04:00
ssh = {
enable = true;
ports = [ config.secrets.hosts.dimaga.ssh.port ];
2024-05-20 20:52:57 -04:00
};
virtualization.host = {
enable = true;
user = "aires";
vmBuilds = {
2024-06-25 14:13:15 -04:00
enable = true;
cores = 3;
ram = 4096;
2024-06-25 14:13:15 -04:00
};
2024-05-22 16:47:55 -04:00
};
};
users.aires = {
enable = true;
services = {
syncthing = {
enable = true;
home = "${services-root}/syncthing/aires";
};
};
};
};
}