Added SSSD config
This commit is contained in:
parent
417383f89b
commit
8b331ad3ae
@ -41,7 +41,10 @@ in
|
||||
description = "Automatically join the domain";
|
||||
wantedBy = [ "default.target" ];
|
||||
after = [
|
||||
"network.target"
|
||||
"network-online.target"
|
||||
];
|
||||
requires = [
|
||||
"network-online.target"
|
||||
];
|
||||
serviceConfig = {
|
||||
type = "oneshot";
|
||||
@ -55,5 +58,32 @@ in
|
||||
--stdin-password < ${cfg.join.passwordFile}
|
||||
'';
|
||||
};
|
||||
|
||||
# Set up SSSD
|
||||
services.sssd = {
|
||||
enable = true;
|
||||
config = ''
|
||||
[sssd]
|
||||
domains = ${domain}
|
||||
config_file_version = 2
|
||||
services = nss, pam, ssh
|
||||
|
||||
[domain/${domain}]
|
||||
enumerate = false
|
||||
ad_domain = ${domain}
|
||||
krb5_realm = ${domainUpper}
|
||||
id_provider = ad
|
||||
auth_provider = ad
|
||||
access_provider = ad
|
||||
chpass_provider = ad
|
||||
use_fully_qualified_names = false
|
||||
ldap_id_mapping = true
|
||||
ad_gpo_access_control = permissive
|
||||
'';
|
||||
};
|
||||
systemd.services.sssd = {
|
||||
after = [ "adcli-join.service" ];
|
||||
requires = [ "adcli-join.service" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user