mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-07 21:28:54 -05:00
181 lines
4.9 KiB
Nix
181 lines
4.9 KiB
Nix
let
|
|
volumePath = "/overseer/services";
|
|
in
|
|
{
|
|
lib,
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
lib.mkIf config.user.overseer.enable {
|
|
# Some scafolding for secrets
|
|
sops = {
|
|
defaultSopsFile = inputs.nix-secrets.secrets.overseer;
|
|
age.keyFile = "/var/lib/sops-nix/key.txt";
|
|
age.generateKey = true;
|
|
};
|
|
|
|
# Create the dirs we need
|
|
systemd.tmpfiles.rules = [
|
|
"d ${volumePath}"
|
|
];
|
|
|
|
# Pull in the restic secrets from sops
|
|
sops.secrets."restic/url" = {};
|
|
sops.secrets."restic/key" = {};
|
|
# (Arguably) Most Important Service - backups
|
|
services.restic.backups = {
|
|
homebox = {
|
|
user = "root";
|
|
timerConfig = {
|
|
OnCalendar = "hourly";
|
|
Persistent = true;
|
|
};
|
|
paths = [
|
|
"/var/lib/homebox/data"
|
|
];
|
|
repositoryFile = config.sops.secrets."restic/url".path;
|
|
passwordFile = config.sops.secrets."restic/key".path;
|
|
};
|
|
};
|
|
|
|
# OCI services
|
|
virtualisation.podman.enable = true;
|
|
virtualisation.oci-containers.backend = "podman";
|
|
|
|
# These ports are needed for NGINX Proxy Manager
|
|
networking.firewall.allowedTCPPorts = [
|
|
443
|
|
80
|
|
];
|
|
|
|
services.nginx = {
|
|
enable = true;
|
|
recommendedProxySettings = true;
|
|
virtualHosts = {
|
|
"homebox.wanderingcrow.net" = {
|
|
locations."/" = {
|
|
proxyPass = "http://localhost:7745";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
"home.wanderingcrow.net" = {
|
|
locations."/" = {
|
|
extraConfig = ''
|
|
allow 192.168.0.0/16;
|
|
deny all;
|
|
'';
|
|
proxyPass = "http://localhost:8082";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
sops.secrets."homepage/openmeteo/lat" = {};
|
|
sops.secrets."homepage/openmeteo/long" = {};
|
|
sops.templates."homepage-environment".content = ''
|
|
HOMEPAGE_VAR_LAT = ${config.sops.placeholder."homepage/openmeteo/lat"}
|
|
HOMEPAGE_VAR_LONG = ${config.sops.placeholder."homepage/openmeteo/long"}
|
|
'';
|
|
|
|
services = {
|
|
homebox = {
|
|
enable = true;
|
|
settings = {
|
|
HBOX_OPTIONS_ALLOW_REGISTRATION = "true";
|
|
};
|
|
};
|
|
homepage-dashboard = {
|
|
enable = true;
|
|
environmentFile = config.sops.templates."homepage-environment".path;
|
|
settings = {
|
|
theme = "dark";
|
|
};
|
|
widgets = [
|
|
{
|
|
search = {
|
|
provider = "duckduckgo";
|
|
target = "_blank";
|
|
};
|
|
}
|
|
{
|
|
openmeteo = {
|
|
timezone = "America/New_York";
|
|
units = "imperial";
|
|
cache = "5";
|
|
latitude = "{{HOMEPAGE_VAR_LAT}}";
|
|
longitude = "{{HOMEPAGE_VAR_LONG}}";
|
|
};
|
|
}
|
|
];
|
|
bookmarks = [
|
|
{
|
|
WCE = [
|
|
{
|
|
Homebox = [
|
|
{
|
|
icon = "http://homebox.wanderingcrow.net/favicon.svg";
|
|
href = "http://homebox.wanderingcrow.net";
|
|
}
|
|
];
|
|
}
|
|
];
|
|
}
|
|
{
|
|
"Day to Day" = [
|
|
{
|
|
Messages = [
|
|
{
|
|
icon = "google-messages.svg";
|
|
href = "https://messages.google.com/web";
|
|
}
|
|
];
|
|
}
|
|
{
|
|
YouTube = [
|
|
{
|
|
icon = "youtube.svg";
|
|
href = "https://youtube.com";
|
|
}
|
|
];
|
|
}
|
|
{
|
|
"Proton Mail" = [
|
|
{
|
|
icon = "proton-mail.svg";
|
|
href = "https://mail.proton.me";
|
|
}
|
|
];
|
|
}
|
|
{
|
|
Instagram = [
|
|
{
|
|
icon = "instagram.svg";
|
|
href = "https://instagram.com";
|
|
}
|
|
];
|
|
}
|
|
{
|
|
Aetolia = [
|
|
{
|
|
icon = "https://aetolia.com/wp-content/uploads/2020/04/favicon.ico";
|
|
href = "https://aetolia.com";
|
|
}
|
|
];
|
|
}
|
|
{
|
|
Amazon = [
|
|
{
|
|
icon = "amazon.svg";
|
|
href = "https://amazon.com";
|
|
}
|
|
];
|
|
}
|
|
];
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|