hosts/alyssum: (temporarily) allow password login

This commit is contained in:
Cilly Leang 2026-05-28 18:43:52 +10:00
parent 0638cf6f5f
commit 880316173f
Signed by: cilly
GPG key ID: 6500251E087653C9

View file

@ -1,4 +1,4 @@
{ inputs, modules, modulesPath, ... }: {
{ lib, modules, modulesPath, ... }: {
networking.hostName = "alyssum";
system.stateVersion = "25.11";
time.timeZone = "Australia/Melbourne";
@ -25,4 +25,7 @@
];
me.environment = "headless";
services.openssh.settings.PermitRootLogin = lib.mkForce "yes";
services.openssh.settings.PasswordAuthentication = lib.mkForce true;
}