Compare commits

..

No commits in common. "d4cc7f893e646b397b590be772499f2a6253911b" and "578386193bb95464ee6f834591cd82dfef430da3" have entirely different histories.

8 changed files with 11 additions and 13 deletions

View file

@ -71,11 +71,6 @@
};
};
zramSwap = {
enable = true;
memoryPercent = 50;
};
networking.useDHCP = false;
systemd.network = {

View file

@ -91,6 +91,10 @@
mountOptions = [ "compress=zstd" ];
mountpoint = "/var/lib/pve-cluster";
};
"/swap" = {
mountpoint = "/.swapvol";
swap.swapfile.size = "32G";
};
};
};
};

View file

@ -7,7 +7,6 @@
virtualisation = {
docker = {
enable = true;
package = pkgs.docker_29;
daemon.settings = {
ipv6 = true;
ip6tables = true;

View file

@ -17,7 +17,7 @@ in {
config = lib.mkIf cfg.enable {
virtualisation.oci-containers.containers = {
dockhand = {
image = "fnsys/dockhand:v1.0.32";
image = "fnsys/dockhand:v1.0.27";
volumes = [
"/var/run/docker.sock:/var/run/docker.sock"
];

View file

@ -94,7 +94,7 @@ in {
systemd.services."docker-network-webproxy" = {
path = [ pkgs.docker_29 ];
path = [ pkgs.docker ];
serviceConfig = {
Type = "oneshot";
};

View file

@ -10,8 +10,8 @@ let
cfg = config.services.netbird-docker;
netbirdCfg = config.services.netbird;
serverVersion = "0.72.2";
dashboardVersion = "2.39.0";
serverVersion = "0.70.5";
dashboardVersion = "2.38.0";
in {

View file

@ -206,7 +206,7 @@ in {
};
systemd.services."docker-network-traefik" = {
path = [ pkgs.docker_29 ];
path = [ pkgs.docker ];
serviceConfig = {
Type = "oneshot";
};

View file

@ -112,7 +112,7 @@ in {
};
systemd.services."docker-network-traefik" = {
path = [ pkgs.docker_29 ];
path = [ pkgs.docker ];
serviceConfig = {
Type = "oneshot";
};
@ -122,7 +122,7 @@ in {
};
systemd.services."docker-network-docker-socket" = {
path = [ pkgs.docker_29 ];
path = [ pkgs.docker ];
serviceConfig = {
Type = "oneshot";
};