add stuff
This commit is contained in:
@@ -99,7 +99,7 @@
|
|||||||
nftables = {};
|
nftables = {};
|
||||||
nat = {
|
nat = {
|
||||||
enable = true;
|
enable = true;
|
||||||
internalInterfaces = [ "ve-*" ];
|
internalInterfaces = [ "ve-+" ];
|
||||||
externalInterface = "enp6s0";
|
externalInterface = "enp6s0";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -193,7 +193,7 @@
|
|||||||
git.enable = true;
|
git.enable = true;
|
||||||
nh.enable = true;
|
nh.enable = true;
|
||||||
netbird.enable = true;
|
netbird.enable = true;
|
||||||
minecraft.enable = true;
|
minecraft.enable = false;
|
||||||
steam.enable = false;
|
steam.enable = false;
|
||||||
virtualization = {
|
virtualization = {
|
||||||
traefik.enable = true;
|
traefik.enable = true;
|
||||||
|
|||||||
@@ -7,7 +7,11 @@
|
|||||||
|
|
||||||
config = lib.mkIf config.sysconfig.opts.virtualization.gitea.enable {
|
config = lib.mkIf config.sysconfig.opts.virtualization.gitea.enable {
|
||||||
|
|
||||||
networking.hosts."192.168.100.20" = [ "gitea.blunkall.us" ];
|
networking = {
|
||||||
|
hosts."192.168.100.20" = [ "gitea.blunkall.us" ];
|
||||||
|
|
||||||
|
nat.internalInterfaces = [ "ve-gitea" ];
|
||||||
|
};
|
||||||
|
|
||||||
sops.secrets = {
|
sops.secrets = {
|
||||||
"gitea/dbpass" = {};
|
"gitea/dbpass" = {};
|
||||||
|
|||||||
@@ -13,8 +13,11 @@
|
|||||||
|
|
||||||
config = lib.mkIf config.sysconfig.opts.virtualization.homeassistant.enable {
|
config = lib.mkIf config.sysconfig.opts.virtualization.homeassistant.enable {
|
||||||
|
|
||||||
|
networking = {
|
||||||
networking.hosts."192.168.100.25" = [ "hass.local" ];
|
networking.hosts."192.168.100.25" = [ "hass.local" ];
|
||||||
|
|
||||||
|
nat.internalInterfaces = [ "ve-home-assistant" ];
|
||||||
|
};
|
||||||
containers.home-assistant = {
|
containers.home-assistant = {
|
||||||
|
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
|
|||||||
@@ -7,7 +7,11 @@
|
|||||||
|
|
||||||
config = lib.mkIf config.sysconfig.opts.virtualization.n8n.enable {
|
config = lib.mkIf config.sysconfig.opts.virtualization.n8n.enable {
|
||||||
|
|
||||||
networking.hosts."192.168.100.21" = [ "n8n.local" ];
|
networking = {
|
||||||
|
hosts."192.168.100.21" = [ "n8n.local" ];
|
||||||
|
|
||||||
|
nat.internalInterfaces = [ "ve-n8n" ];
|
||||||
|
};
|
||||||
|
|
||||||
containers.n8n = {
|
containers.n8n = {
|
||||||
|
|
||||||
|
|||||||
@@ -18,6 +18,10 @@
|
|||||||
};
|
};
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
networking = {
|
||||||
|
|
||||||
|
nat.internalInterfaces = [ "ve-pihole" ];
|
||||||
|
};
|
||||||
containers.pihole = {
|
containers.pihole = {
|
||||||
|
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
|
|||||||
@@ -20,6 +20,10 @@
|
|||||||
|
|
||||||
config = lib.mkIf config.sysconfig.opts.virtualization.sandbox.enable {
|
config = lib.mkIf config.sysconfig.opts.virtualization.sandbox.enable {
|
||||||
|
|
||||||
|
networking = {
|
||||||
|
|
||||||
|
nat.internalInterfaces = [ "ve-sandbox" ];
|
||||||
|
};
|
||||||
containers.sandbox = {
|
containers.sandbox = {
|
||||||
|
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user