mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-28 08:14:58 +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) ];
|
|
};
|
|
}
|