aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/users/root/default.nix
blob: f70f414eb98e2e2412ffeb60cfa28377bc2d31f7 (plain)
1
2
3
4
5
6
7
8
9
10
{ pkgs, ... }:
{
  users.users.root = {
    openssh.authorizedKeys.keys = [
      (builtins.readFile ../nipsy/keys/id_arrakis.pub)
      #(builtins.readFile ./keys/id_other.pub)
    ];
    shell = pkgs.zsh;
  };
}