diff --git a/configuration.nix b/configuration.nix new file mode 100644 index 0000000..fdc6859 --- /dev/null +++ b/configuration.nix @@ -0,0 +1,15 @@ +{ ... }: +{ + imports = [ + ./hardware-configuration.nix + ./modules/generic.nix + ./modules/rclone.nix + ./modules/borg.nix + ./modules/postgresql.nix + ./modules/nextcloud.nix + ./modules/navidrome.nix + ./modules/ombi.nix + ]; +} + +# vim: set et ts=2 sw=2 ai: diff --git a/modules/nextcloud.nix b/modules/nextcloud.nix index e30f5a7..9c8c6b3 100644 --- a/modules/nextcloud.nix +++ b/modules/nextcloud.nix @@ -63,6 +63,7 @@ 'dbindex' => 0, 'timeout' => 1.5, ], + 'allow_local_remote_servers' => true, ]; ''; in { diff --git a/modules/ombi.nix b/modules/ombi.nix new file mode 100644 index 0000000..c87bfc0 --- /dev/null +++ b/modules/ombi.nix @@ -0,0 +1,11 @@ +{ ... }: +{ + nixpkgs.config.packageOverrides = pkgs: + { + ombi = pkgs.callPackage /root/ombi {}; + }; + + services.ombi.enable = true; +} + +# vim: set et ts=2 sw=2 ai: