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