15 lines
486 B
Nix
15 lines
486 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.fw = {
|
|
isNormalUser = true;
|
|
shell = pkgs.bash;
|
|
packages = with pkgs; [ dnsutils git htop jq moreutils nettools nmap tshark tree ];
|
|
hashedPassword = "$6$034hbg0r8vbwbgg$m8t1HcsnxCruOUqG0EEO1EWHpttMIYSSY2tSeMZEsaQlOY3XgYruC9RftFBfhf9fDPUaNXXmvgdsz.tu1DdKw0";
|
|
extraGroups = [ "wheel" ];
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAe4BaMl3YEHPgO8Rh04UgNaTKqmdo+2fASty4LggJJe fw"
|
|
];
|
|
};
|
|
}
|