1
0
vcp-bula-nixfiles/users/fw/default.nix

15 lines
486 B
Nix
Raw Normal View History

2022-07-23 20:48:31 +02:00
{ 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"
];
};
}