fixed path and setup homemanager
This commit is contained in:
2026-03-25 15:14:05 +01:00
parent 2c122a248d
commit b571698c94
9 changed files with 32 additions and 9 deletions

7
home/extras/default.nix Normal file
View File

@@ -0,0 +1,7 @@
{ ... }:
{
imports = [
./sops.nix
];
}

13
home/extras/sops.nix Normal file
View File

@@ -0,0 +1,13 @@
{ ... }:
{
sops = {
defaultSopsFile = ../../secrets/secrets.yaml;
defaultSopsFormat = "yaml";
age.keyFile = "/etc/sops/keys.txt";
# ── Define Secrets ────────────────────────────────────────────────────
secrets."ssh/private".path = "/home/elias/.ssh/id_rsa";
secrets."ssh/public".path = "/home/elias/.ssh/id_rsa.pub";
};
}