Initial clean commit

This commit is contained in:
randogoth 2026-02-05 17:57:02 +02:00
commit 1862821f8f
15 changed files with 1240 additions and 0 deletions

16
hosts/bucur.nix Normal file
View file

@ -0,0 +1,16 @@
{ lib, ... }:
{
networking.hostName = "bucur";
time.timeZone = "UTC";
i18n.defaultLocale = "en_US.UTF-8";
system.stateVersion = "25.11";
virtualisation.vmVariant = {
users.mutableUsers = false;
users.users.tobias.password = "admin";
users.users.tobias.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILXTPk7gb4VDb+jORGw2sKp2SRTzoibXew6DqJJ0A3Zs randogoth@mrht"
];
services.firewalld.enable = lib.mkForce false;
};
}