krops-multi-deploy/config/machines/prod-castle/configuration.nix
2025-11-10 14:27:14 +01:00

23 lines
533 B
Nix

{ config, pkgs, ... }:
let
domain = "ariege.io";
in
{
imports = [
{ _module.args = { inherit domain; }; } # Uses the let binding
(import /var/src/config-shared {
inherit config pkgs domain; # Uses the let binding
})
./hardware-configuration.nix
./boot.nix
./wireguard.nix
./ario-home.nix
./jellyfin.nix
# BORG backup
# read docs/lnbits-borg-backup-guide.md
./borg-lnbits.nix
];
# networking.hostName = "castle-prod"; # TODO: test this out before uncommenting
}