mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 05:02:10 -08:00
41 lines
961 B
Nix
41 lines
961 B
Nix
{
|
|
age.secrets = {
|
|
youwen_app_password = {
|
|
file = ./youwenw_app_password.age;
|
|
owner = "youwen";
|
|
group = "users";
|
|
mode = "600";
|
|
};
|
|
youwen_ucsb_client_id = {
|
|
file = ./youwen_ucsb_client_id.age;
|
|
owner = "youwen";
|
|
group = "users";
|
|
mode = "600";
|
|
};
|
|
youwen_ucsb_client_secret = {
|
|
file = ./youwen_ucsb_client_secret.age;
|
|
owner = "youwen";
|
|
group = "users";
|
|
mode = "600";
|
|
};
|
|
tincan_app_password = {
|
|
file = ./tincan_app_password.age;
|
|
owner = "youwen";
|
|
group = "users";
|
|
mode = "600";
|
|
};
|
|
github_cli_secret_config = {
|
|
file = ./github_cli_secret_config.age;
|
|
owner = "youwen";
|
|
group = "users";
|
|
mode = "600";
|
|
path = "/home/youwen/.config/gh/hosts.yml";
|
|
};
|
|
nix_config_github_pat = {
|
|
file = ./nix_config_github_pat.age;
|
|
owner = "youwen";
|
|
group = "users";
|
|
mode = "0440";
|
|
};
|
|
};
|
|
}
|