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 = [
|
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;
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue