2 Commits

Author SHA1 Message Date
8af3c9fa85 mob next [ci-skip] [ci skip] [skip ci]
lastFile:inventories/default.nix
2025-10-17 17:10:31 +07:00
ddedaad4f3 mob next [ci-skip] [ci skip] [skip ci]
lastFile:machines/neptune/configuration.nix
2025-10-17 17:01:36 +07:00
2 changed files with 23 additions and 1 deletions

View File

@@ -5,7 +5,7 @@
tags = {
glom = [ "vega" ];
b4l = [ "rigel" ];
fax-bridge = [ ];
fax-bridge = [ "neptune" ];
};
instances = {

View File

@@ -0,0 +1,22 @@
{ inputs, config, ... }:
{
imports = [
(inputs.import-tree ./services)
];
nixpkgs.hostPlatform = {
system = "x86_64-linux";
};
boot.loader.grub.devices = [ "/dev/disk/by-id/FIXME" ];
fileSystems = {
"/".device = "/dev/FIXME";
};
networking.fqdn = "b4l.co.th";
system.stateVersion = "25.11";
clan.core.sops.defaultGroups = [ "admins" ];
security.acme.defaults.email = "admin@b4l.co.th";
security.acme.acceptTerms = true;
services.nginx.virtualHosts."${config.networking.fqdn}" = {
enableACME = true;
};
}