blob: f8563b4fb42646f3ad583aa79627f546c9f5e92e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ lib, ... }:
{
imports = [ ../common/configuration.nix ];
networking.hostName = lib.mkOptionDefault "server";
security.sudo.wheelNeedsPassword = false;
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
};
}
|