configuration
flake
hosts
lib
modules
pkgs
users
clerie
criese-nethinks
isa
default.nix
ssh.pub
.gitignore
README.md
flake.lock
flake.nix
11 lines
145 B
Nix
11 lines
145 B
Nix
{ ... }:
|
|
|
|
{
|
|
users.users.isa = {
|
|
isNormalUser = true;
|
|
openssh.authorizedKeys.keys = [
|
|
(builtins.readFile ./ssh.pub)
|
|
];
|
|
};
|
|
}
|