about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2024-12-30 23:53:49 +0100
committerMel <einebeere@gmail.com>2024-12-30 23:53:49 +0100
commit5e933be1de8d94a533ec18c3081b7c2784a1cf8d (patch)
treeb1c50d2cb7da41c9a4885428e3d3990c128ecdb7
parente561cdc080c9aa8bbe127613c754715cd6740228 (diff)
downloadspecimen-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.nix2
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;
       })
     ];