stockholm/krebs/2configs/secret-passwords.nix

8 lines
147 B
Nix
Raw Normal View History

2023-06-10 10:50:53 +00:00
{ lib, ... }:
with lib;
{
users.extraUsers =
mapAttrs (_: h: { hashedPassword = h; })
(import <secrets/hashedPasswords.nix>);
}