nixos-config/configs/nixos/_users/admin/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

# Mainly used for managing the installations with deploy-rs.
{ config, lib, pkgs, ... }:
let
name = "admin";
in
{
users.users.${name} = {
description = "The administrator account for the servers.";
isNormalUser = true;
extraGroups = [ "wheel" ];
useDefaultShell = true;
openssh.authorizedKeys.keyFiles = [
../../../home-manager/foo-dogsquared/files/ssh-key.pub
../../../home-manager/foo-dogsquared/files/ssh-key-2.pub
../../ni/files/ssh-key.pub
];
};
# We're going passwordless, baybee!
security.sudo.extraRules = [{
users = [ name ];
commands = [{
command = "ALL";
options = [ "NOPASSWD" ];
}];
}];
security.doas.extraRules = [{
users = [ name ];
noPass = true;
}];
# This is also a trusted user for the Nix daemon.
nix.settings.trusted-users = [ name ];
# Allow the user to easily enter into several services such as the database
# services to allowing some debugging.
2023-01-07 08:06:34 +00:00
services.postgresql.ensureUsers = [{ inherit name; }];
services.mysql.ensureUsers = [{ inherit name; }];
}