elnudrop: reconfigure

This commit is contained in:
Elnu 2025-03-21 18:03:57 -07:00
parent eee649811a
commit 0ba88e4d38

View file

@ -1,22 +1,25 @@
{ lib, user, ... }: { lib, modulesPath, user, ... }:
{ {
imports = [ imports = lib.optional (builtins.pathExists ./do-userdata.nix) ./do-userdata.nix ++ [
./hardware-configuration.nix (modulesPath + "/virtualisation/digital-ocean-config.nix")
#./hardware-configuration.nix
# Remember to update for new instances # 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/ssh.nix
./modules/headscale.nix #./modules/headscale.nix
./modules/tailscale.nix #./modules/tailscale.nix
./hosts/jichan.org #./hosts/jichan.org
./hosts/tegakituesday.com #./hosts/tegakituesday.com
]; ];
networking = { networking = {
# May cause some issues # May cause some issues
networkmanager.enable = lib.mkForce false; #networkmanager.enable = lib.mkForce false;
firewall = { firewall = {
enable = true; enable = true;
allowedTCPPorts = [ 80 443 ]; allowedTCPPorts = [ 80 443 ];
@ -38,5 +41,5 @@
}; };
}; };
services.do-agent.enable = true; #services.do-agent.enable = true;
} }