fix: isolate secret

This commit is contained in:
Jermeiah S 2025-06-19 15:06:00 -04:00
parent dc8b13736b
commit 62c440f78a
No known key found for this signature in database
2 changed files with 9 additions and 7 deletions

View file

@ -16,6 +16,14 @@ in
self.nixosModules.default
"${modulesPath}/virtualisation/lxc-container.nix"
];
sops.secrets = {
otfenv = {
owner = "otf";
group = "otf";
mode = "0550";
};
};
services = {
tty-ips.enable = true;
otf = {

View file

@ -11,12 +11,6 @@
];
sops = {
defaultSopsFile = ../../../secrets.yaml;
secrets = {
otfenv = {
owner = "otf";
group = "otf";
mode = "0550";
};
};
};
}