Server NixOS configs
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: openssh

+10
+10
hosts/tethys/default.nix
··· 7 7 ./networking.nix 8 8 ]; 9 9 10 + services.openssh = { 11 + enable = true; 12 + settings.PasswordAuthentication = false; 13 + settings.KbdInteractiveAuthentication = false; 14 + }; 15 + 16 + users.users.root.openssh.authorizedKeys.keys = [ 17 + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDkhuhfzyg7R+O62XSktHufGmmhy6FNDi/NuPPJt7bI+" 18 + ]; 19 + 10 20 nixpkgs.config.allowUnfree = true; 11 21 12 22 system.stateVersion = "26.05";