Avoid packages rebuilds and decrease ZFS ARC cache

This commit is contained in:
2020-03-29 06:21:19 +02:00
parent 5bcda20414
commit 7927cc183f
5 changed files with 25 additions and 12 deletions

View File

@@ -53,6 +53,7 @@
id = "cjhmu-avy9v";
type = "receiveonly";
path = "/vault/syncthing/Projects";
watch = false;
};
};
};

View File

@@ -1,6 +1,11 @@
# Software development configuration
{ config, pkgs, lib, ... }:
{
environment.systemPackages = with pkgs; [
gitea
];
# Gitea setup with daily backup
services.gitea = {
enable = true;

View File

@@ -6,6 +6,8 @@
{
environment.systemPackages = with pkgs; [
avahi
ddclient
wireguard
wireguard-tools
];

View File

@@ -133,8 +133,6 @@
};
};
# Restart nginx after
systemd.services.nginx.after = [ "gitea.service" "syncthing.service" "miniflux.service" ];
systemd.services.nginx.after = [ "gitea.service" "syncthing.service" "miniflux.service" "radicale.service" ];
}