This commit is contained in:
2025-12-20 21:55:03 +00:00
parent 4850d85030
commit cac332c6fb
20 changed files with 230 additions and 203 deletions

View File

@@ -11,6 +11,8 @@
(modulesPath + "/profiles/qemu-guest.nix")
./disk-config.nix
./hardware-configuration.nix
./openssh.nix
./secrets.nix
../../profiles/core.nix
../../profiles/fail2ban.nix
../../profiles/gitea.nix
@@ -20,11 +22,6 @@
inputs.sops-nix.nixosModules.sops
];
sops.secrets.litestream = {
sopsFile = ../../secrets/michael-litestream;
format = "binary";
};
home-manager.users.${user} = {
pkgs,
lib,
@@ -52,13 +49,5 @@
];
};
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "yes";
PasswordAuthentication = false;
};
};
networking.hostName = hostname;
}