NixOS configuration for HPC cluster
https://docs.hpc.informatik.hs-fulda.de/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
716 B
35 lines
716 B
{ lib, config, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
baseDN = concatMapStringsSep ","
|
|
(part: "dc=${part}")
|
|
(splitString "." config.networking.domain);
|
|
in
|
|
{
|
|
users.mutableUsers = false;
|
|
|
|
users.users."root" = {
|
|
hashedPassword = "$y$j9T$tz8ojZ2gVOQ5AUp6GMhoj.$mAeE0eTGGsKNGddC7ebk/zFr5IMDyIpOpMP/6o.GI6D";
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK2nkarN0+uSuP5sGwDCb9KRu+FCjO/+da4VypGanPUZ fooker@k-2so"
|
|
];
|
|
};
|
|
|
|
users.ldap = {
|
|
enable = true;
|
|
|
|
server = "ldap://manager.${config.networking.domain}/";
|
|
base = baseDN;
|
|
|
|
daemon.enable = true;
|
|
};
|
|
|
|
users.users."fooker" = {
|
|
isNormalUser = true;
|
|
group = "cluster";
|
|
password = "asdasd123";
|
|
};
|
|
}
|