nix/nixos/users/root/default.nix

6 lines
165 B
Nix
Raw Normal View History

2023-12-01 04:47:31 +01:00
{ config, desktop, lib, pkgs, ... }: {
2023-12-12 13:09:50 +01:00
# Define a user account.
users.users.root = {
openssh.authorizedKeys.keyFiles = [ ../../../keys/ssh/keys.txt ];
};
2023-12-01 04:43:38 +01:00
}