waffentrager: disable samba ad
This commit is contained in:
parent
5de90edd9c
commit
2c27517ab1
|
@ -3,61 +3,12 @@ let
|
||||||
cfg = config.waffentragerService.auth;
|
cfg = config.waffentragerService.auth;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.waffentragerService.auth.enable = materusArg.pkgs.lib.mkBoolOpt false "Enable auth";
|
|
||||||
imports =
|
imports =
|
||||||
[
|
[
|
||||||
./samba.nix
|
./samba.nix
|
||||||
];
|
];
|
||||||
config = lib.mkIf cfg.enable
|
config =
|
||||||
{
|
{
|
||||||
waffentragerService.elements.enable = true;
|
|
||||||
waffentragerService.nginx.enable = true;
|
|
||||||
|
|
||||||
|
|
||||||
security.acme.defaults.credentialsFile = config.sops.secrets.certs.path;
|
|
||||||
|
|
||||||
systemd.services.resolvconf.enable = false;
|
|
||||||
networking.hosts = {
|
|
||||||
"${materusArg.ips.wireguard.waffentrager}" = [
|
|
||||||
materusArg.waffentrager.samba.domain
|
|
||||||
"${materusArg.waffentrager.samba.netbiosName}.${materusArg.waffentrager.samba.domain}"
|
|
||||||
materusArg.waffentrager.samba.netbiosName
|
|
||||||
];
|
|
||||||
};
|
|
||||||
environment.etc = {
|
|
||||||
resolvconf = {
|
|
||||||
text = ''
|
|
||||||
search ${materusArg.waffentrager.samba.domain}
|
|
||||||
nameserver ${materusArg.waffentrager.samba.dnsIp}
|
|
||||||
nameserver 9.9.9.9
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
systemd.timers.rsync-acme = {
|
|
||||||
wantedBy = [ "timers.target" ];
|
|
||||||
timerConfig = {
|
|
||||||
OnBootSec = "1min";
|
|
||||||
OnUnitActiveSec = "1h";
|
|
||||||
Unit = "rsync-acme.service";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
systemd.services.rsync-acme = {
|
|
||||||
description = "Sync acme for samba";
|
|
||||||
path = [ pkgs.rsync ];
|
|
||||||
requires = [ "var-lib-mnt_acme.mount" ];
|
|
||||||
after = [ "var-lib-mnt_acme.mount" ];
|
|
||||||
serviceConfig.Type = "oneshot";
|
|
||||||
serviceConfig.RemainAfterExit = false;
|
|
||||||
script = ''
|
|
||||||
rsync -avzr --chmod=0600 --chown=root:root /var/lib/mnt_acme/${materusArg.waffentrager.samba.domain}/key.pem ${materusArg.waffentrager.samba.servicePath}/tls/
|
|
||||||
rsync -avzr --chmod=0640 --chown=root:root /var/lib/mnt_acme/${materusArg.waffentrager.samba.domain}/chain.pem ${materusArg.waffentrager.samba.servicePath}/tls/
|
|
||||||
rsync -avzr --chmod=0640 --chown=root:root /var/lib/mnt_acme/${materusArg.waffentrager.samba.domain}/fullchain.pem ${materusArg.waffentrager.samba.servicePath}/tls/
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
{ materusArg, config, lib, pkgs, ... }:
|
{ materusArg, config, lib, pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
|
||||||
|
options.waffentragerService.auth.samba.enable = materusArg.pkgs.lib.mkBoolOpt false "Enable samba AD";
|
||||||
|
|
||||||
config =
|
config =
|
||||||
let
|
let
|
||||||
cfg = config.waffentragerService.auth;
|
cfg = config.waffentragerService.auth.samba;
|
||||||
sambaCfg = config.services.samba;
|
sambaCfg = config.services.samba;
|
||||||
servicePath = materusArg.waffentrager.samba.servicePath;
|
servicePath = materusArg.waffentrager.samba.servicePath;
|
||||||
smbToString = x:
|
smbToString = x:
|
||||||
|
@ -86,6 +87,51 @@
|
||||||
${smbToString (map shareConfig (lib.attrNames sambaCfg.shares))}
|
${smbToString (map shareConfig (lib.attrNames sambaCfg.shares))}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
environment.etc = {
|
||||||
|
resolvconf = {
|
||||||
|
text = ''
|
||||||
|
search ${materusArg.waffentrager.samba.domain}
|
||||||
|
nameserver ${materusArg.waffentrager.samba.dnsIp}
|
||||||
|
nameserver 9.9.9.9
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
networking.hosts = {
|
||||||
|
"${materusArg.ips.wireguard.waffentrager}" = [
|
||||||
|
materusArg.waffentrager.samba.domain
|
||||||
|
"${materusArg.waffentrager.samba.netbiosName}.${materusArg.waffentrager.samba.domain}"
|
||||||
|
materusArg.waffentrager.samba.netbiosName
|
||||||
|
];
|
||||||
|
};
|
||||||
|
systemd.timers.rsync-acme = {
|
||||||
|
wantedBy = [ "timers.target" ];
|
||||||
|
timerConfig = {
|
||||||
|
OnBootSec = "1min";
|
||||||
|
OnUnitActiveSec = "1h";
|
||||||
|
Unit = "rsync-acme.service";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
systemd.services.rsync-acme = {
|
||||||
|
description = "Sync acme for samba";
|
||||||
|
path = [ pkgs.rsync ];
|
||||||
|
requires = [ "var-lib-mnt_acme.mount" ];
|
||||||
|
after = [ "var-lib-mnt_acme.mount" ];
|
||||||
|
serviceConfig.Type = "oneshot";
|
||||||
|
serviceConfig.RemainAfterExit = false;
|
||||||
|
script = ''
|
||||||
|
rsync -avzr --chmod=0600 --chown=root:root /var/lib/mnt_acme/${materusArg.waffentrager.samba.domain}/key.pem ${materusArg.waffentrager.samba.servicePath}/tls/
|
||||||
|
rsync -avzr --chmod=0640 --chown=root:root /var/lib/mnt_acme/${materusArg.waffentrager.samba.domain}/chain.pem ${materusArg.waffentrager.samba.servicePath}/tls/
|
||||||
|
rsync -avzr --chmod=0640 --chown=root:root /var/lib/mnt_acme/${materusArg.waffentrager.samba.domain}/fullchain.pem ${materusArg.waffentrager.samba.servicePath}/tls/
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
waffentragerService.elements.enable = true;
|
||||||
|
waffentragerService.nginx.enable = true;
|
||||||
|
|
||||||
|
|
||||||
|
security.acme.defaults.credentialsFile = config.sops.secrets.certs.path;
|
||||||
|
|
||||||
|
systemd.services.resolvconf.enable = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,5 +16,5 @@
|
||||||
waffentragerService.gitea.enable = true;
|
waffentragerService.gitea.enable = true;
|
||||||
waffentragerService.nginx.enable = true;
|
waffentragerService.nginx.enable = true;
|
||||||
waffentragerService.nextcloud.enable = true;
|
waffentragerService.nextcloud.enable = true;
|
||||||
waffentragerService.auth.enable = true;
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue