NixOS deployment for LinuxLab
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
617 B

1 week ago
  1. { pkgs, config, ...}:
  2. {
  3. users.mutableUsers = false;
  4. users.users."root" = {
  5. #hashedPassword = "$y$j9T$5ZEv2RROIXAqdFjFEXEst0$5HA63fmwjGXw1id4n94TRgY1gTuXsQGKXmzlcWXyE07";
  6. hashedPassword = "$y$j9T$IqOVsS6/ACfhDXzA3LqsZ1$J/16UDhw44bHWJqIoCdjms6IEwT4tk4ghq2WpThOlMA";
  7. openssh.authorizedKeys.keys = [
  8. "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK2nkarN0+uSuP5sGwDCb9KRu+FCjO/+da4VypGanPUZ fooker@k-2so"
  9. ];
  10. packages = with pkgs; [
  11. vim
  12. wget
  13. curl
  14. tmux
  15. fd
  16. ripgrep
  17. htop
  18. iotop
  19. iftop
  20. file
  21. iperf
  22. ldns
  23. tcpdump
  24. ];
  25. };
  26. }