{ modulesPath, lib, pkgs, ... }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/profiles/qemu-guest.nix") ./disk-config.nix ]; boot.loader.grub = { # no need to set devices, disko will add all devices that have a EF02 partition to the list already # devices = [ ]; efiSupport = true; efiInstallAsRemovable = true; }; services.openssh = { enable = true; settings = { PasswordAuthentication = false; PermitRootLogin = "no"; }; }; networking.hostName = "antares"; time.timeZone = "Europe/Berlin"; virtualisation.podman = { enable = true; dockerCompat = true; autoPrune = { enable = true; dates = "weekly"; flags = [ "--filter=until=24h" "--filter=label!=important" ]; }; defaultNetwork.settings.dns_enabled = true; }; environment.systemPackages = map lib.lowPrio [ pkgs.curl pkgs.gitMinimal pkgs.podman-compose ]; users.users.dk = { isNormalUser = true; description = "Dominik Kaiser"; extraGroups = [ "wheel" ]; openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICtL2eG098LhkFPR4N5e44XMq60uvCUCOuKMYs5zjg6f" ]; }; users.users.git = { isNormalUser = true; description = "git"; extraGroups = [ ]; openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICtL2eG098LhkFPR4N5e44XMq60uvCUCOuKMYs5zjg6f" ]; }; system.stateVersion = "24.05"; }