This commit is contained in:
sadan 2025-03-10 00:01:34 -04:00
parent d55c93bfaf
commit 2f2b116890
No known key found for this signature in database
4 changed files with 70 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ config, ... }:
{
imports = [
../../homeModules/sops.nix
];
home = {
file = {
qbit_compose = {
source = ./docker-compose.yal;
target = "./src/qbit/docker-compose.yml";
};
};
};
sops = {
secrets = {
gluetun_env = {
format = "dotenv";
sopsFile = ./gluetun.env;
path = "/home/${config.home.username}/src/qbit/gluetun.env";
};
};
};
}