nixos-config/modules/sean/default.nix

21 lines
696 B
Nix
Raw Normal View History

2020-09-18 13:54:09 +00:00
{ config, pkgs, ... }:
{
2020-09-24 05:45:48 +00:00
users.users = {
sean = {
isNormalUser = true;
uid = 1000;
extraGroups = [ "wheel" "audio" "video" "networkmanager" "dialout" "input" "wireshark" ];
2020-10-28 18:38:36 +00:00
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIqWHzIXaF88Y8+64gBlLbZ5ZZcLl08kTHG1clHd7gaq"
2020-10-28 18:39:29 +00:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIALNzkn63+7jlmGk68bj03A4Ym7aBdPTODq+QHyYULfO"
2020-10-28 18:39:54 +00:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHtTBrVXCDelPYUeUzFSLhWtBDI8IO6HVpX4ewUxD+Nc"
2020-10-28 18:40:28 +00:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPLZgFlJTT8wFz2DGeB1YETKPvm63/u1kT7pzranCoqP"
2020-10-28 18:38:36 +00:00
];
2020-09-18 13:54:09 +00:00
};
2020-09-24 05:45:48 +00:00
test = {
isNormalUser = true;
isSystemUser = true;
};
};
2020-09-18 13:54:09 +00:00
}