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