dotfiles/.config/nixos/shared/ssh.nix
Andrei Jiroh Halili 18b7c4e226 chore(nixos): update configurations and add README
Also set wakatime project name for @hackclub High Seas and
for coding stats

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>
2024-12-29 22:16:59 +08:00

15 lines
No EOL
288 B
Nix

# To use this shared NixOS configuration for OpenSSH, just import this file
# on your NixOS configuration.
{ config, pkgs, lib, ... }:
{
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "prohibit-password";
};
};
programs.mosh.enable = true;
}