liminalOS/reference/users/youwen/secrets/default.nix

44 lines
1 KiB
Nix
Raw Normal View History

{ config, ... }:
2024-12-27 18:03:08 -08:00
{
age.secrets = {
youwen_app_password = {
file = ./youwenw_app_password.age;
mode = "600";
};
youwen_ucsb_client_id = {
file = ./youwen_ucsb_client_id.age;
mode = "600";
};
youwen_ucsb_client_secret = {
file = ./youwen_ucsb_client_secret.age;
mode = "600";
};
tincan_app_password = {
file = ./tincan_app_password.age;
mode = "600";
};
github_cli_secret_config = {
file = ./github_cli_secret_config.age;
mode = "600";
path = "${config.home.homeDirectory}/.config/gh/hosts.yml";
};
github_ssh_priv_key = {
file = ./github_ssh_priv_key.age;
mode = "600";
};
youwen_dev_ssh_priv_key = {
file = ./youwen_dev_ssh_priv_key.age;
mode = "600";
};
gallium_server_ssh = {
file = ./gallium_server_ssh.age;
mode = "600";
};
2024-12-28 01:04:00 -08:00
wakatime_cfg = {
file = ./wakatime_cfg.age;
mode = "600";
path = "${config.home.homeDirectory}/.wakatime.cfg";
};
2024-12-27 18:03:08 -08:00
};
}