{ modulesPath, config, lib, pkgs, ... }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/profiles/qemu-guest.nix") ./disk-config.nix ]; # Basic setup system.stateVersion = "23.11"; 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; }; deployment = { targetHost = "puppy.girlth.ing"; buildOnTarget = true; }; # SSH Access services.openssh.enable = true; users.users.root.openssh.authorizedKeys.keys = [ "no-touch-required sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIPpKjZfzPN1KxVskFRnmTTCwzyCtjwcXVZc4i1rNfl9oAAAABHNzaDo= me@aria.rip" ]; # Networking setup networking = { hostName = "puppy"; domain = "girlth.ing"; }; # Basic nginx placeholder networking.firewall.allowedTCPPorts = [80]; services.nginx = { enable = true; virtualHosts."girlth.ing" = { default = true; root = ./landing; }; }; }