nixos-config/users/nixos/admin/default.nix
2022-12-03 15:24:22 +08:00

20 lines
638 B
Nix

# This is the main account for servers. It is also used for managing the
# installations with deploy-rs.
{ config, lib, pkgs, ... }:
{
users.users.admin = {
description = "The administrator account for the servers.";
hashedPassword = "$6$KXZD6NvjtSkle/id$ECs7zIwDBOlQiFACsyot1gyjKG9UWMlUdRknVujE9efpHMQGx7.YZWyJ0VkV0ja0BPzeF/EzTu6n4EEF5ZHPD0";
isNormalUser = true;
extraGroups = [ "wheel" ];
useDefaultShell = true;
openssh.authorizedKeys.keyFiles = [
../../home-manager/foo-dogsquared/files/ssh-key.pub
../../../hosts/ni/files/ssh-key.pub
];
};
nix.settings.trusted-users = [ "admin" ];
}