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.

30 lines
511 B

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