7 lines
161 B
Nix
7 lines
161 B
Nix
|
{ ... }: with import <stockholm/lib>;
|
||
|
{
|
||
|
users.extraUsers =
|
||
|
mapAttrs (_: h: { hashedPassword = h; })
|
||
|
(import <secrets/hashedPasswords.nix>);
|
||
|
}
|