hosts: nixos: add host-specific secrets module

This is the same logic as the common module, but for secrets that don't
need to be shared to different hosts.
This commit is contained in:
Bruno BELANYI 2023-04-13 16:48:37 +00:00
parent 34a3f9a0d6
commit 57008bcb7c
7 changed files with 70 additions and 0 deletions

View file

@ -0,0 +1,13 @@
# Host-specific secrets
let
keys = import ../../../../keys;
all = [
# This host is a laptop, it does not have a host key
# Allow me to modify the secrets anywhere
keys.users.ambroisie
];
in
{
# Add secrets here
}