diff options
author | ene <ene@sils.li> | 2023-04-09 12:59:18 +0200 |
---|---|---|
committer | ene <ene@sils.li> | 2023-04-09 14:11:01 +0200 |
commit | 8af97609c6596f62780745a0e4b7c12c520946e5 (patch) | |
tree | c4629f5d0c429d011c0fb70ed52b9e75c136027a /secrets/default.nix | |
parent | Fix(hm/conf/mail): Remove soispha's name completely (diff) | |
download | nixos-config-8af97609c6596f62780745a0e4b7c12c520946e5.tar.gz nixos-config-8af97609c6596f62780745a0e4b7c12c520946e5.zip |
Fix(secrets): Secrets now work
Diffstat (limited to '')
-rw-r--r-- | secrets/default.nix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/secrets/default.nix b/secrets/default.nix index 5462e4d8..7577b8f3 100644 --- a/secrets/default.nix +++ b/secrets/default.nix @@ -1,8 +1,13 @@ -{config, ...}: { +{...}: { age = { - identityPaths = ["/home/soispha/.ssh/id_ed25519"]; secrets.nheko = { file = ./nheko; + path = "/home/soispha/.config/nheko/nheko.conf"; # TODO use xdgConfigHome + mode = "700"; + owner = "soispha"; + group = "users"; }; }; } +# vim: ts=2 + |