This commit is contained in:
2026-02-19 17:45:00 +03:00
parent 3e2e2542da
commit b572f4b817
6 changed files with 49 additions and 5 deletions
+14
View File
@@ -0,0 +1,14 @@
{
lib,
...
}:
{
imports = [
./remnawave.nix
];
environment.systemPackages = with pkgs; [
compose2nix
podman-tui
];
}
+29
View File
@@ -0,0 +1,29 @@
{
config,
lib,
pkgs,
inputs,
xlib,
...
}:
{
# fileSystems."${config.services.immich.mediaLocation}" = {
# device = "${xlib.dirs.services-folder}/immich";
# options = [
# "bind"
# "nofail"
# ];
# };
# systemd.tmpfiles.rules = [
# "z ${config.services.immich.mediaLocation} 0755 immich immich -"
# ];
# environment = {
# systemPackages = with pkgs; [
# immich-cli
# ];
# };
}
+3 -2
View File
@@ -6,6 +6,7 @@
imports = [
../software/beets
./calibre-web.nix
./containers
./immich.nix
./miniflux.nix
./nextcloud.nix
@@ -18,11 +19,11 @@
./systemd.nix
./transmission.nix
./uptime-kuma.nix
# ./rsync.nix
# ./nfs.nix
# ./mealie.nix
# ./memos.nix
# ./nfs.nix
# ./node-red.nix
# ./rsync.nix
# ./trilium.nix
# ./zerotier.nix
];
+3 -3
View File
@@ -4,10 +4,10 @@
}:
{
imports = [
./containers.nix
# ../services/uptime-kuma.nix
# ./netbird.nix
./containers
./nginx.nix
./xray.nix
# ../services/uptime-kuma.nix
# ./netbird.nix
];
}