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

155 lines
4.3 KiB
Nix
Raw Normal View History

{
pkgs,
home-manager,
lib,
config,
...
}:
2024-02-29 09:53:34 -05:00
let
start-haven = pkgs.writeShellScriptBin "start-haven" (builtins.readFile ./start-haven.sh);
2024-05-23 23:50:42 -04:00
subdomains = [
config.secrets.services.airsonic.url
2024-05-24 17:33:37 -04:00
config.secrets.services.cache.url
2024-05-23 23:50:42 -04:00
config.secrets.services.forgejo.url
2024-05-24 11:56:23 -04:00
config.secrets.services.gremlin-lab.url
];
2024-02-29 09:53:34 -05:00
in
{
imports = [ ./hardware-configuration.nix ];
system.stateVersion = "24.05";
2024-02-29 09:53:34 -05:00
host = {
role = "server";
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 = {
"${config.secrets.networking.primaryDomain}" = {
dnsProvider = "namecheap";
extraDomainNames = subdomains;
webroot = null; # Required in order to prevent a failed assertion
credentialFiles = {
"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}
''}";
};
};
};
};
apcupsd = {
enable = true;
configText = builtins.readFile ./etc/apcupsd.conf;
};
airsonic = {
enable = true;
home = "/storage/services/airsonic-advanced";
};
autoUpgrade.pushUpdates = true;
2024-05-20 20:52:57 -04:00
boinc.enable = true;
2024-05-24 17:33:37 -04:00
cache = {
enable = false; # Disable for now
2024-05-24 17:33:37 -04:00
secretKeyFile = "/storage/services/nix-cache/cache-priv-key.pem";
};
duplicacy-web = {
enable = true;
autostart = false;
environment = "/storage/backups/settings/Haven";
};
forgejo = {
enable = true;
home = "/storage/services/forgejo";
};
msmtp.enable = true;
2024-05-20 20:52:57 -04:00
nginx = {
enable = true;
autostart = false;
virtualHosts = {
"${config.secrets.networking.primaryDomain}" = {
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-05-24 11:56:23 -04:00
"${config.secrets.services.gremlin-lab.url}" = {
useACMEHost = config.secrets.networking.primaryDomain;
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
};
};
ssh = {
enable = true;
ports = [ config.secrets.hosts.haven.ssh.port ];
};
2024-05-22 16:47:55 -04:00
virtualization = {
enable = true;
user = "aires";
};
};
users.aires = {
enable = true;
services.syncthing = {
enable = true;
autostart = false;
};
};
};
2024-02-29 09:53:34 -05:00
2024-05-20 20:52:57 -04:00
# TODO: VPN (Check out Wireguard)
# Add Haven's startup script
environment.systemPackages = [ start-haven ];
# Allow Haven to be a build target for other architectures (mainly ARM64)
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
# Automatically update Flake configuration for other hosts to use
systemd.services."nixos-update-flake" = {
serviceConfig = {
Type = "oneshot";
User = config.users.users.aires.name;
};
path = with pkgs; [
# Courtesy of https://discourse.nixos.org/t/how-to-use-other-packages-binary-in-systemd-service-configuration/14363
2024-05-30 12:19:07 -04:00
coreutils
gnutar
xz.bin
gzip
git
config.nix.package.out
openssh
];
script = ''
set -eu
cd ${config.secrets.nixConfigFolder}
git pull --recurse-submodules
nix flake update
git add flake.lock
2024-05-30 12:46:43 -04:00
git diff --quiet && git diff --staged --quiet || git commit -am "Update flake.lock" && git push # Courtesy of https://stackoverflow.com/a/40255467
'';
};
systemd.timers."nixos-update-flake-timer" = {
wants = [ "network-online.target" ];
after = [ "network-online.target" ];
wantedBy = [ "timers.target" ];
timerConfig = {
OnCalendar = "daily";
Persistent = "true";
Unit = "nixos-update-flake.service";
};
};
}