this repo has no description
0
fork

Configure Feed

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

feat(ssh): add public key and disable password auth

+9 -1
+6 -1
configuration.nix
··· 136 136 }; 137 137 138 138 services = { 139 - openssh.enable = true; 139 + openssh = { 140 + enable = true; 141 + settings = { 142 + PasswordAuthentication = false; 143 + }; 144 + }; 140 145 pipewire = { 141 146 enable = true; 142 147 alsa.enable = true;
+3
users/khuedoan.nix
··· 11 11 "video" 12 12 "wheel" 13 13 ]; 14 + openssh.authorizedKeys.keys = [ 15 + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN5ue4np7cF34f6dwqH1262fPjkowHQ8irfjVC156PCG" 16 + ]; 14 17 shell = pkgs.zsh; 15 18 packages = with pkgs; [ 16 19 aria