diff --git a/hosts/elnudrop/default.nix b/hosts/elnudrop/default.nix index 6f6db61..0094bce 100644 --- a/hosts/elnudrop/default.nix +++ b/hosts/elnudrop/default.nix @@ -1,22 +1,25 @@ -{ lib, user, ... }: +{ lib, modulesPath, user, ... }: { - imports = [ - ./hardware-configuration.nix + imports = lib.optional (builtins.pathExists ./do-userdata.nix) ./do-userdata.nix ++ [ + (modulesPath + "/virtualisation/digital-ocean-config.nix") + #./hardware-configuration.nix # Remember to update for new instances - ./networking.nix # generated at runtime by nixos-infect + #./networking.nix # generated at runtime by nixos-infect + # root gets managed by digital-ocean-config for us + # but we want to override some things and let user login ./modules/ssh.nix - ./modules/headscale.nix - ./modules/tailscale.nix + #./modules/headscale.nix + #./modules/tailscale.nix - ./hosts/jichan.org - ./hosts/tegakituesday.com + #./hosts/jichan.org + #./hosts/tegakituesday.com ]; networking = { # May cause some issues - networkmanager.enable = lib.mkForce false; + #networkmanager.enable = lib.mkForce false; firewall = { enable = true; allowedTCPPorts = [ 80 443 ]; @@ -38,5 +41,5 @@ }; }; - services.do-agent.enable = true; + #services.do-agent.enable = true; } \ No newline at end of file