mirror of
https://github.com/youwen5/liminalOS.git
synced 2025-06-19 21:49:52 -07:00
29 lines
612 B
Nix
29 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";
|
||
|
};
|
||
|
};
|
||
|
}
|