refactor: reorganize features

This commit is contained in:
2026-04-27 16:47:12 +02:00
parent 0b2ecd31b0
commit 93624900ad
18 changed files with 193 additions and 206 deletions
+25
View File
@@ -0,0 +1,25 @@
{
config,
...
}:
let
repo = config.repo;
account = repo.account;
in
{
flake.modules.homeManager.passwords =
{
pkgs,
...
}:
{
programs.rbw = {
enable = true;
settings = {
base_url = repo.services.vaultwarden.url;
email = account.primaryEmail.address;
pinentry = pkgs.pinentry-gnome3;
};
};
};
}