feat(servers): set passwords using hashedPasswordFile.

This commit is contained in:
CronyAkatsuki 2025-05-16 08:18:46 +02:00
parent 41747d82cc
commit eb5fffaaa0
10 changed files with 52 additions and 2 deletions

View file

@ -0,0 +1,5 @@
{config, ...}: {
users.users.root = {
hashedPasswordFile = "${config.age.secrets.root-passwd.path}";
};
}