nixos-config/modules/secrets.nix
2019-08-27 23:41:02 +04:00

87 lines
2.3 KiB
Nix

{ pkgs, config, lib, ... }:
with lib;
with types;
let
mkCredOption = service: extra:
mkOption {
description = "Credentials for ${service}";
type = nullOr (submodule {
options = {
user = mkOption {
type = string;
description = "Username for ${service}";
};
password = mkOption {
type = string;
description = "Password for ${service}";
};
} // extra;
});
};
in rec {
options.secrets = {
wireguard = mkOption {
type = attrs;
description = "Wireguard conf";
};
# owm-key = mkOption {
# type = nullOr string;
# description = "OpenWeatherMap key";
# };
# irc = mkCredOption "IRC (konversation)" { };
# slack-term = mkOption { type = string; };
# gcal = {
# email = mkOption { type = lib.types.string; };
# client-id = mkOption { type = lib.types.string; };
# client-secret = mkOption { type = lib.types.string; };
# refresh-token = mkOption { type = lib.types.string; };
# };
# gmail = mkCredOption "gmail (trojita)" { };
# gpmusic = mkCredOption "Google Play Music (mopidy)" {
# deviceid = mkOption {
# type = string;
# description = "Android device ID";
# };
# };
# openvpn = mkCredOption "openvpn" {};
# rclone = mkOption {
# type = nullOr string;
# description = "Rclone config";
# };
# id_rsa = mkOption {
# type = nullOr string;
# description = "SSH RSA private key";
# };
# matrix = rec {
# shared_secret = mkOption {
# type = nullOr string;
# description = "A shared secret for matrix instance";
# };
# cert = mkOption {
# type = nullOr string;
# description = "SSL certificate";
# };
# priv = mkOption {
# type = nullOr string;
# description = "SSL RSA private key";
# };
# mautrix-whatsapp = {
# config = mkOption {
# type = attrs;
# };
# registration = mkOption {
# type = attrs;
# };
# };
# mautrix-telegram = mautrix-whatsapp;
# };
};
config = let
secretnix = import ../secret.nix;
secrets = if isNull secretnix then
mapAttrs (n: v: null) options.secrets
else
secretnix;
in { inherit secrets; };
}