mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 16:46:34 +01:00
Use updated settings names
This commit is contained in:
parent
3c816a3620
commit
5dd2fb403d
1 changed files with 6 additions and 4 deletions
|
@ -12,10 +12,12 @@ in
|
|||
config = mkIf cfg.enable {
|
||||
services.openssh = {
|
||||
enable = true;
|
||||
passwordAuthentication = false;
|
||||
kbdInteractiveAuthentication = false;
|
||||
settings.X11forwarding = true;
|
||||
settings.PermitRootLogin = "yes";
|
||||
settings = {
|
||||
X11forwarding = true;
|
||||
PermitRootLogin = "yes";
|
||||
passwordAuthentication = false;
|
||||
kbdInteractiveAuthentication = false;
|
||||
};
|
||||
};
|
||||
environment.systemPackages = with pkgs; [ sshfs ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue