blob: cd514a57098d51bf3d64e775cc67d64f6c82171e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ config, pkgs, ... }:
{
users.users.root = {
openssh.authorizedKeys.keys = [
(builtins.readFile ../nipsy/keys/id_arrakis.pub)
#(builtins.readFile ./keys/id_other.pub)
];
shell = pkgs.zsh;
};
# Import this user's personal/home configurations
home-manager.users.root = import ../../../../home/root/${config.networking.hostName}.nix;
}
|