2023-09-11 13:31:13 +00:00
|
|
|
{ config, lib, ... }:
|
2023-06-10 10:50:53 +00:00
|
|
|
with lib;
|
2017-07-21 09:04:26 +00:00
|
|
|
{
|
|
|
|
users.extraUsers =
|
|
|
|
mapAttrs (_: h: { hashedPassword = h; })
|
2023-09-11 13:31:13 +00:00
|
|
|
(import "${config.krebs.secret.directory}/hashedPasswords.nix");
|
2017-07-21 09:04:26 +00:00
|
|
|
}
|