pass: move from module to user config

This commit is contained in:
2025-03-16 14:12:55 +00:00
parent adb2cbc4ca
commit f09457f6fc
9 changed files with 12 additions and 31 deletions

View File

@ -34,6 +34,7 @@ in
./git.nix
./gpg.nix
./neovim.nix
./pass.nix
./shell.nix
];

11
users/jordan/pass.nix Normal file
View File

@ -0,0 +1,11 @@
{
pkgs,
...
}:
{
home.programs.password-store = {
enable = true;
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
};
}