Compare commits
2 Commits
mob/fax-ma
...
8af3c9fa85
Author | SHA1 | Date | |
---|---|---|---|
8af3c9fa85 | |||
ddedaad4f3 |
@@ -5,7 +5,7 @@
|
|||||||
tags = {
|
tags = {
|
||||||
glom = [ "vega" ];
|
glom = [ "vega" ];
|
||||||
b4l = [ "rigel" ];
|
b4l = [ "rigel" ];
|
||||||
fax-bridge = [ ];
|
fax-bridge = [ "neptune" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
instances = {
|
instances = {
|
||||||
|
22
machines/neptune/configuration.nix
Normal file
22
machines/neptune/configuration.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user