*actually* upload nixcloud configs

This commit is contained in:
k3t
2026-03-12 05:15:14 -06:00
parent 18261a9969
commit e8b59f873b
12 changed files with 471 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{ pkgs, ... }: {
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.binfmt.emulatedSystems = ["x86_64-linux" "i386-linux"];
#environment.systemPackages = with pkgs; [
#];
services.fail2ban.enable = true;
services.openssh = {
enable = true;
settings.PasswordAuthentication = true;
};
system.autoUpgrade = {
operation = "boot";
allowReboot = true;
rebootWindow = { lower = "02:00"; upper = "05:00"; };
};
}