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 = [
./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;
}