Merge pull request 'modules: init user-password' (#1358) from a-kenji-modules/init/user-password into main
This commit is contained in:
@@ -5,17 +5,18 @@
|
|||||||
imports = [ ./disk-layouts ];
|
imports = [ ./disk-layouts ];
|
||||||
};
|
};
|
||||||
borgbackup = ./borgbackup;
|
borgbackup = ./borgbackup;
|
||||||
ergochat = ./ergochat;
|
|
||||||
deltachat = ./deltachat;
|
deltachat = ./deltachat;
|
||||||
|
ergochat = ./ergochat;
|
||||||
localbackup = ./localbackup;
|
localbackup = ./localbackup;
|
||||||
localsend = ./localsend;
|
localsend = ./localsend;
|
||||||
matrix-synapse = ./matrix-synapse;
|
matrix-synapse = ./matrix-synapse;
|
||||||
moonlight = ./moonlight;
|
moonlight = ./moonlight;
|
||||||
|
root-password = ./root-password;
|
||||||
sshd = ./sshd;
|
sshd = ./sshd;
|
||||||
sunshine = ./sunshine;
|
sunshine = ./sunshine;
|
||||||
syncthing = ./syncthing;
|
syncthing = ./syncthing;
|
||||||
root-password = ./root-password;
|
|
||||||
thelounge = ./thelounge;
|
thelounge = ./thelounge;
|
||||||
|
user-password = ./root-password;
|
||||||
xfce = ./xfce;
|
xfce = ./xfce;
|
||||||
zt-tcp-relay = ./zt-tcp-relay;
|
zt-tcp-relay = ./zt-tcp-relay;
|
||||||
};
|
};
|
||||||
|
|||||||
14
clanModules/user-password/README.md
Normal file
14
clanModules/user-password/README.md
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
Automatically generates and configures a password for the specified user account.
|
||||||
|
---
|
||||||
|
|
||||||
|
If setting the option prompt to true, the user will be prompted to type in their desired password.
|
||||||
|
|
||||||
|
After the system was installed/deployed the following command can be used to display the user-password:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
clan secrets get {machine_name}-user-password
|
||||||
|
```
|
||||||
|
|
||||||
|
See also: [Facts / Secrets](../../getting-started/secrets.md)
|
||||||
|
|
||||||
|
To regenerate the password, delete the password files in the clan directory and redeploy the machine.
|
||||||
49
clanModules/user-password/default.nix
Normal file
49
clanModules/user-password/default.nix
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
options.clan.user-password = {
|
||||||
|
user = lib.mkOption {
|
||||||
|
type = lib.types.str;
|
||||||
|
example = "alice";
|
||||||
|
description = "The user the password should be generated for.";
|
||||||
|
};
|
||||||
|
prompt = lib.mkOption {
|
||||||
|
type = lib.types.bool;
|
||||||
|
default = false;
|
||||||
|
example = true;
|
||||||
|
description = "Whether the user should be prompted.";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = {
|
||||||
|
users.mutableUsers = false;
|
||||||
|
users.users.${config.clan.user-password.user}.hashedPasswordFile =
|
||||||
|
config.clanCore.facts.services.user-password.secret.user-password-hash.path;
|
||||||
|
sops.secrets."${config.clanCore.machineName}-user-password-hash".neededForUsers = true;
|
||||||
|
clanCore.facts.services.user-password = {
|
||||||
|
secret.user-password = { };
|
||||||
|
secret.user-password-hash = { };
|
||||||
|
generator.prompt = (
|
||||||
|
lib.mkIf config.clan.user-password.prompt "Set the password for your $user: ${config.clan.user-password.user}.
|
||||||
|
You can autogenerate a password, if you leave this prompt blank."
|
||||||
|
);
|
||||||
|
generator.path = with pkgs; [
|
||||||
|
coreutils
|
||||||
|
xkcdpass
|
||||||
|
mkpasswd
|
||||||
|
];
|
||||||
|
generator.script = ''
|
||||||
|
if [[ -n $prompt_value ]]; then
|
||||||
|
echo $prompt_value > $secrets/user-password
|
||||||
|
else
|
||||||
|
xkcdpass --numwords 3 --delimiter - --count 1 > $secrets/user-password
|
||||||
|
fi
|
||||||
|
cat $secrets/user-password | mkpasswd -s -m sha-512 > $secrets/user-password-hash
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -75,6 +75,7 @@ nav:
|
|||||||
- reference/clanModules/sunshine.md
|
- reference/clanModules/sunshine.md
|
||||||
- reference/clanModules/syncthing.md
|
- reference/clanModules/syncthing.md
|
||||||
- reference/clanModules/thelounge.md
|
- reference/clanModules/thelounge.md
|
||||||
|
- reference/clanModules/user-password.md
|
||||||
- reference/clanModules/xfce.md
|
- reference/clanModules/xfce.md
|
||||||
- reference/clanModules/zt-tcp-relay.md
|
- reference/clanModules/zt-tcp-relay.md
|
||||||
- Clan Core:
|
- Clan Core:
|
||||||
|
|||||||
Reference in New Issue
Block a user