flakes/data.nix
Chinmay D. Pai 3a3a8afe30
feat: add nixos configuration based on snowfall-lib
Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
2024-09-02 18:31:19 +05:30

29 lines
786 B
Nix

{
secrets = {
machines = {
thonkpad = {
password.file = ./secrets/machines/thonkpad/password.age;
root-password.file = ./secrets/machines/thonkpad/root-password.age;
};
bicboye = {
password.file = ./secrets/machines/bicboye/password.age;
root-password.file = ./secrets/machines/bicboye/root-password.age;
};
};
services = {
gitea = {
password.file = ./secrets/services/gitea/password.age;
};
miniflux = {
password.file = ./secrets/services/miniflux/password.age;
};
paperless = {
password.file = ./secrets/services/paperless/password.age;
};
vaultwarden = {
password.file = ./secrets/services/vaultwarden/password.age;
};
};
};
}