10 lines
195 B
Nix
10 lines
195 B
Nix
{
|
|
users.users.root = {
|
|
openssh.authorizedKeys.keyFiles = [
|
|
# copy your public key here and point to it
|
|
# ./id_rsa.pub
|
|
];
|
|
};
|
|
|
|
# Add the rest of your configuration here
|
|
}
|