feat(nixos/ddclient): Proper secrets management
This commit is contained in:
parent
ff54f4080f
commit
58cf4bf8fc
3 changed files with 7 additions and 2 deletions
|
@ -8,10 +8,12 @@ in {
|
|||
options.marleyos.services.ddclient.enable = lib.mkEnableOption "ddclient";
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
age.secrets.ddclient.file = ../../../../secrets/ddclient.conf.age;
|
||||
|
||||
services.ddclient = {
|
||||
enable = true;
|
||||
|
||||
configFile = "/home/marley/ddclient.conf";
|
||||
configFile = config.age.secrets.ddclient.path;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
BIN
secrets/ddclient.conf.age
Normal file
BIN
secrets/ddclient.conf.age
Normal file
Binary file not shown.
|
@ -7,6 +7,9 @@ let
|
|||
marleycentre = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEA86DphSL36GsvatkXgFU1ONzt53UzXdUaQN1EBWeCD root@nixos";
|
||||
marleynet = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIArAAwU4JX7wa5X3Un3q5b+ZD52j0nCnNsGEybWf/7SB root@nixos";
|
||||
systems = [nyx marleycentre marleynet];
|
||||
|
||||
defaultKeys = users ++ systems;
|
||||
in {
|
||||
"babeshare-pass.age".publicKeys = users ++ systems;
|
||||
"babeshare-pass.age".publicKeys = defaultKeys;
|
||||
"ddclient.conf.age".publicKeys = defaultKeys;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue