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