mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 05:02:10 -08:00
28 lines
612 B
Nix
28 lines
612 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";
|
|
};
|
|
};
|
|
}
|