elnudrop: reconfigure
This commit is contained in:
parent
eee649811a
commit
0ba88e4d38
1 changed files with 13 additions and 10 deletions
|
@ -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;
|
||||
}
|
Loading…
Add table
Reference in a new issue