diff options
| author | Mel <einebeere@gmail.com> | 2024-12-30 23:53:49 +0100 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2024-12-30 23:53:49 +0100 |
| commit | 5e933be1de8d94a533ec18c3081b7c2784a1cf8d (patch) | |
| tree | b1c50d2cb7da41c9a4885428e3d3990c128ecdb7 | |
| parent | e561cdc080c9aa8bbe127613c754715cd6740228 (diff) | |
| download | specimen-5e933be1de8d94a533ec18c3081b7c2784a1cf8d.tar.zst specimen-5e933be1de8d94a533ec18c3081b7c2784a1cf8d.zip | |
Do not lock password for users in Incus VM
Signed-off-by: Mel <einebeere@gmail.com>
| -rw-r--r-- | configuration/vm/incus.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configuration/vm/incus.nix b/configuration/vm/incus.nix index e14716f..501d8f1 100644 --- a/configuration/vm/incus.nix +++ b/configuration/vm/incus.nix @@ -29,6 +29,7 @@ let groups = "users"; sudo = "ALL=(ALL) NOPASSWD:ALL"; passwd = password; + lock_passwd = false; ssh_authorized_keys = keys; }) (with credentials.philip; { @@ -36,6 +37,7 @@ let groups = "users"; sudo = "ALL=(ALL) NOPASSWD:ALL"; passwd = password; + lock_passwd = false; ssh_authorized_keys = keys; }) ]; |
