backing up the working dir

This commit is contained in:
Jay Looney 2025-10-28 16:10:19 -05:00
parent 82f1d9d5c9
commit b8d125d448
19 changed files with 622 additions and 4 deletions

13
hosts/lithium/sops.nix Normal file
View file

@ -0,0 +1,13 @@
{ inputs, config, ... }:
let
secretsPath = builtins.toString inputs.nixos-secrets;
in
{
imports = [
inputs.sops-nix.nixosModules.sops
];
sops = {
defaultSopsFile = "${secretsPath}/${config.hostname}/secrets.yaml";
};
}