1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00

pizauth: reload on change and option type

- added onChange pizauth reload for config file

- clientSecret is not required for outlook365 so should be nullable.
This commit is contained in:
Anton Tetov 2025-08-27 12:39:10 +02:00 committed by Austin Horstman
parent 77a71380c3
commit 99a69bdf8a
2 changed files with 18 additions and 1 deletions

View file

@ -28,6 +28,13 @@
"offline_access"
];
};
test3 = {
authUri = "authUri3";
tokenUri = "tokenUri3";
clientId = "clientId3";
scopes = [
];
};
};
};
@ -64,6 +71,12 @@
"offline_access"
];
}
account "test3" {
auth_uri = "authUri3";
token_uri = "tokenUri3";
client_id = "clientId3";
}
''}
'';
};