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