fix various things, to make it work after update
This commit is contained in:
parent
8792925490
commit
68ce7c836c
8 changed files with 10 additions and 2 deletions
|
@ -185,7 +185,7 @@
|
|||
, modules
|
||||
}: {
|
||||
|
||||
clan.networking.targetHost = lib.mkDefault "root@${host}";
|
||||
clan.core.networking.targetHost = lib.mkDefault "root@${host}";
|
||||
nixpkgs.pkgs = meta.pkgs;
|
||||
nixpkgs.hostPlatform = meta.system;
|
||||
clan.core.facts.secretStore = "password-store";
|
||||
|
@ -197,7 +197,7 @@
|
|||
|
||||
zerotierControllerModule =
|
||||
{
|
||||
clan.networking.zerotier.controller = {
|
||||
clan.core.networking.zerotier.controller = {
|
||||
enable = true;
|
||||
public = false;
|
||||
};
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
./social-matrix-terranix.nix
|
||||
|
||||
];
|
||||
services.logrotate.checkConfig = false; # because uid 3000 does not exist in here
|
||||
|
||||
networking.hostName = "orbi";
|
||||
|
||||
|
|
|
@ -87,6 +87,7 @@ in
|
|||
nixpkgs.pkgs = pkgs;
|
||||
imports = [ ../../components/monitor/container.nix ];
|
||||
system.stateVersion = "23.11";
|
||||
services.logrotate.checkConfig = false; # because uid 3000 does not exist in here
|
||||
|
||||
# Configuring nameservers for containers is currently broken.
|
||||
# Therefore in some cases internet connectivity can be broken inside the containers.
|
||||
|
|
|
@ -27,6 +27,7 @@ in
|
|||
nixpkgs.pkgs = pkgs;
|
||||
imports = [ ../../components/monitor/container.nix ];
|
||||
system.stateVersion = "21.05";
|
||||
services.logrotate.checkConfig = false; # because uid 3000 does not exist in here
|
||||
|
||||
# allow transmission to write in syncthing folders
|
||||
users.groups.syncthing = {
|
||||
|
@ -36,6 +37,7 @@ in
|
|||
|
||||
services.transmission = {
|
||||
enable = true;
|
||||
package = pkgs.legacy_2405.transmission_4;
|
||||
settings = {
|
||||
download-dir = "/media/torrent/downloads";
|
||||
incomplete-dir = "/media/torrent/incomplete";
|
||||
|
|
|
@ -17,6 +17,7 @@ in
|
|||
nixpkgs.pkgs = pkgs;
|
||||
imports = [ ../../components/monitor/container.nix ];
|
||||
system.stateVersion = "23.11";
|
||||
services.logrotate.checkConfig = false; # because uid 3000 does not exist in here
|
||||
|
||||
# Photoprism
|
||||
# ----------
|
||||
|
|
|
@ -14,6 +14,7 @@ in
|
|||
nixpkgs.pkgs = pkgs;
|
||||
imports = [ ../../components/monitor/container.nix ];
|
||||
system.stateVersion = "24.05";
|
||||
services.logrotate.checkConfig = false; # because uid 3000 does not exist in here
|
||||
|
||||
# Photoprism
|
||||
# ----------
|
||||
|
|
|
@ -15,6 +15,7 @@ in
|
|||
nixpkgs.pkgs = pkgs;
|
||||
imports = [ ../../components/monitor/container.nix ];
|
||||
system.stateVersion = "24.05";
|
||||
services.logrotate.checkConfig = false; # because uid 3000 does not exist in here
|
||||
|
||||
# Vikunja
|
||||
# ----------
|
||||
|
|
|
@ -68,6 +68,7 @@ in
|
|||
nixpkgs.pkgs = pkgs;
|
||||
imports = [ ../../components/monitor/container.nix ];
|
||||
system.stateVersion = "23.11";
|
||||
services.logrotate.checkConfig = false; # because uid 3000 does not exist in here
|
||||
|
||||
systemd.tmpfiles.settings.nextcloud = {
|
||||
"/run/secrets/matrix-shared-secret"."C+" = {
|
||||
|
|
Loading…
Reference in a new issue