stockholm/modules/mkdir/users.nix

20 lines
287 B
Nix
Raw Normal View History

2015-06-19 19:59:27 +00:00
{ ... }:
let
inherit (builtins) readFile;
in
{
users.extraUsers =
{
root = {
openssh.authorizedKeys.keys = [
(readFile <pubkeys/deploy_wu.ssh.pub>)
(readFile <pubkeys/tv_wu.ssh.pub>)
];
};
};
users.mutableUsers = false;
}