nixos-config/users/nixos/admin/default.nix

20 lines
628 B
Nix
Raw Normal View History

# 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.";
2022-11-30 00:31:56 +00:00
hashedPassword = "$6$KXZD6NvjtSkle/id$ECs7zIwDBOlQiFACsyot1gyjKG9UWMlUdRknVujE9efpHMQGx7.YZWyJ0VkV0ja0BPzeF/EzTu6n4EEF5ZHPD0";
isNormalUser = true;
extraGroups = [ "wheel" ];
useDefaultShell = true;
openssh.authorizedKeys.keyFiles = [
../../home-manager/foo-dogsquared/user-key.pub
../../../hosts/ni/host-key.pub
];
};
nix.settings.trusted-users = [ "admin" ];
}