mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2025-02-23 05:32:06 +00:00
Need to commit and push for community help at @hackclub slack later. Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>
15 lines
No EOL
267 B
Nix
15 lines
No EOL
267 B
Nix
# To use this shared NixOS configuration for OpenSSH, just import this file
|
|
# on your NixOS configuration.
|
|
|
|
{...}:
|
|
|
|
{
|
|
programs.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PermitRootLogin = "prohibit-password";
|
|
};
|
|
};
|
|
|
|
programs.mosh.enable = true;
|
|
} |