nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

default.nix (291B)


      1 {...}: {
      2 	users.users.tb148 = {
      3 		isNormalUser = true;
      4 		initialPassword = "password";
      5 		extraGroups = ["wheel"]; # Enable ‘sudo’ for the user.
      6 		openssh.authorizedKeys.keys = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO2TIXbQnwXj+V+wCm381+noJLNa9VPFToIsP446SRnA openpgp:0x86122D5D"];
      7 	};
      8 }