dotfiles/users/nyadmin/default.nix

16 lines
490 B
Nix
Raw Normal View History

2024-02-02 04:25:35 +00:00
{ config, pkgs, lib, ... }:
{
imports = [ ../default.nix ];
2024-02-02 04:25:35 +00:00
users.users.nyadmin = {
isNormalUser = true;
shell = pkgs.zsh;
home = "/home/nyadmin";
2024-08-01 09:44:24 +00:00
description = "nyadministrator~";
2024-02-02 04:25:35 +00:00
extraGroups = [ "wheel" "kvm" "libvirt" "docker" ];
initialHashedPassword = "$y$j9T$XguIcj/AVXsWW/MxSYAGh0$TivGAa0z8KNCli2mKTd24vtqimpadNzqMFwfbeh0p30";
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOVgHcJ9C8TD515x+KqFKNYUa6IZML6LU3FWovmDIvyZ" ];
};
}