aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/common/users/root/default.nix
blob: b47128ce955009f22ef8afb035548506986d90c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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;

}