From 179e62c2aa8d24a935e58d03c80b8e4f24c70a91 Mon Sep 17 00:00:00 2001 From: Dennis Date: Wed, 23 Jul 2025 22:17:06 +0200 Subject: [PATCH] adds stash --- hosts/dnsc-server/default.nix | 1 + modules/stash/default.nix | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 modules/stash/default.nix diff --git a/hosts/dnsc-server/default.nix b/hosts/dnsc-server/default.nix index 5cbfba0..5d09db3 100644 --- a/hosts/dnsc-server/default.nix +++ b/hosts/dnsc-server/default.nix @@ -13,6 +13,7 @@ ../../modules/openssh ../../modules/jellyfin ../../modules/syncthing + ../../modules/stash ]; # General diff --git a/modules/stash/default.nix b/modules/stash/default.nix new file mode 100644 index 0000000..0a48e55 --- /dev/null +++ b/modules/stash/default.nix @@ -0,0 +1,15 @@ +{ + services.stash = { + enable = true; + settings = { + host = "100.103.199.4"; + port = 9069; + stash = [ + { + Path = "/media/stash"; + ExcludeImage = true; + } + ]; + }; + }; +}