nix-git/hosts/yodaNas/host-specific.nix

144 lines
3.8 KiB
Nix
Raw Normal View History

{ config, pkgs, ... }:
let
my-python-packages = ps: with ps; [
# netcup-dns is not (yet) packaged, thus we build it from PyPI
(
buildPythonPackage rec {
pname = "netcup-dns";
version = "0.2.0";
# https://nixos.wiki/wiki/Packaging/Python#Fix_Missing_setup.py
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-tZKPe02tHrTelyw30BQsJhdZpmDsggZ0rr4ag0eHtng=";
};
propagatedBuildInputs = [
# Dependencies
pkgs.python3Packages.requests
pkgs.python3Packages.nc-dnsapi
# Build dependencies
build
twine
];
}
)
2023-10-05 19:59:40 +02:00
# de-p1st-monitor is not (yet) packaged, thus we build it from PyPI
(
buildPythonPackage rec {
pname = "de.p1st.monitor";
2023-11-01 12:58:27 +01:00
version = "0.11.2";
2023-10-05 19:59:40 +02:00
# https://nixos.wiki/wiki/Packaging/Python#Fix_Missing_setup.py
format = "pyproject";
src = fetchPypi {
inherit pname version;
2023-11-01 12:58:27 +01:00
sha256 = "sha256-8rrDuG893gz4B83R8C5U+3AQLK3rPpPoJTTi+C7BL9o=";
2023-10-05 19:59:40 +02:00
};
propagatedBuildInputs = [
# Dependencies
pkgs.python3Packages.psutil
# Build dependencies
build
twine
];
}
)
];
in
{
2023-10-05 19:59:40 +02:00
# Install de.p1st.monitor and netcup-dns Python packages.
environment.systemPackages = [
(pkgs.python3.withPackages my-python-packages)
2023-10-05 19:59:40 +02:00
# Dependency of de.p1st.monitor.
pkgs.smartmontools
];
2023-10-11 11:23:45 +02:00
# Dependency of de.p1st.monitor
boot.kernelModules = [ "drivetemp" ];
2023-10-05 19:59:40 +02:00
# Configure netcup-dns.
# Create file `/etc/netcup-dns/netcup-dns-95191.json`.
deployment.keys."netcup-dns-95191.json" = {
keyFile = ../../secrets/netcup-dns.json;
destDir = "/etc/netcup-dns";
user = "netcup-dns";
group = "netcup-dns";
};
# Create netcup-dns daemon user.
2023-10-08 16:35:02 +02:00
users.users."netcup-dns" = {
isSystemUser = true;
group = "netcup-dns";
description = "netcup-dns daemon";
};
2023-10-08 16:35:02 +02:00
users.groups."netcup-dns" = {};
# Create netcup-dns timer.
systemd.timers."netcup-dns" = {
wantedBy = [ "timers.target" ];
2023-10-02 21:23:13 +02:00
partOf = [ "netcup-dns.service" ];
timerConfig = {
2023-10-02 16:13:17 +02:00
OnBootSec = "0m";
OnUnitInactiveSec = "3m";
AccuracySec = "15s";
RandomizedDelaySec = "15s";
};
};
systemd.services."netcup-dns" = {
serviceConfig = {
Type = "oneshot";
PrivateTmp = true;
User = "netcup-dns";
Nice = 19;
IOSchedulingClass = "idle";
ExecStart = "${pkgs.python3.withPackages my-python-packages}/bin/netcup-dns";
};
};
2023-10-08 16:35:02 +02:00
# Create de.p1st.monitor timer.
systemd.timers."de.p1st.monitor" = {
wantedBy = [ "timers.target" ];
partOf = [ "de.p1st.monitor.service" ];
timerConfig = {
OnBootSec = "0m";
OnUnitInactiveSec = "3m";
AccuracySec = "15s";
RandomizedDelaySec = "15s";
};
};
systemd.services."de.p1st.monitor" = {
serviceConfig = {
Type = "oneshot";
PrivateTmp = true;
# `smartctl` requires root to access /dev/* devices and read their temperatures.
User = "root";
Nice = 19;
IOSchedulingClass = "idle";
ExecStart = "${pkgs.python3.withPackages my-python-packages}/bin/de-p1st-monitor";
};
path = with pkgs; [
# Provides `findmnt` binary.
libuuid
smartmontools
];
};
# Start Jinja-Compose project during boot.
# To few the log, run
# journalctl -b -u Jinja-Compose -f
#
systemd.services."Jinja-Compose" = {
description = "Start Jinja-Compose project";
path = with pkgs; [
# The `docker-compose` helper script is written in `bash` (!)
bash
docker
];
script = ''
2023-10-08 15:38:44 +02:00
set -eu -o pipefail
2023-10-09 19:02:16 +02:00
/jc-config/docker-compose pull
/jc-config/docker-compose up -d --wait
'';
# Start after login.
wantedBy = [ "multi-user.target" ];
};
}