23 lines
533 B
Nix
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
|
|
}
|