mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 14:01:34 +01:00
wifi: derive networks from sops secrets file
This commit is contained in:
parent
2e3b64860f
commit
2da2cd592e
2 changed files with 27 additions and 14 deletions
|
|
@ -5,15 +5,28 @@
|
|||
lib,
|
||||
...
|
||||
}:
|
||||
let
|
||||
cfg = config.custom.sops;
|
||||
in
|
||||
{
|
||||
imports = [ inputs.sops-nix.nixosModules.sops ];
|
||||
|
||||
options.custom.sops.enable = lib.mkEnableOption "";
|
||||
options.custom.sops = {
|
||||
enable = lib.mkEnableOption "";
|
||||
defaultSopsFile = lib.mkOption {
|
||||
type = lib.types.path;
|
||||
default = "${self}/hosts/${config.networking.hostName}/secrets.json";
|
||||
};
|
||||
secrets = lib.mkOption {
|
||||
type = lib.types.anything;
|
||||
default = cfg.defaultSopsFile |> builtins.readFile |> builtins.fromJSON;
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf config.custom.sops.enable {
|
||||
config = lib.mkIf cfg.enable {
|
||||
sops = {
|
||||
age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
||||
defaultSopsFile = "${self}/hosts/${config.networking.hostName}/secrets.json";
|
||||
inherit (cfg) defaultSopsFile;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue