mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-23 16:27:56 +08:00
9 lines
259 B
Nix
9 lines
259 B
Nix
{ config, pkgs, lib, flake, ... }:
|
|
|
|
{
|
|
# Let me login
|
|
users.users = {
|
|
root.openssh.authorizedKeys.keys = [ (builtins.readFile ./id_rsa.pub) ];
|
|
${flake.config.people.myself}.openssh.authorizedKeys.keys = [ (builtins.readFile ./id_rsa.pub) ];
|
|
};
|
|
}
|