email and stuff
This commit is contained in:
27
modules/home-manager/password-store/default.nix
Normal file
27
modules/home-manager/password-store/default.nix
Normal file
@@ -0,0 +1,27 @@
|
||||
{ pkgs, config, ... }:
|
||||
|
||||
{
|
||||
|
||||
home.packages = with pkgs; [
|
||||
passExtensions.pass-otp
|
||||
passExtensions.pass-file
|
||||
];
|
||||
|
||||
programs = {
|
||||
gpg = {
|
||||
enable = true;
|
||||
};
|
||||
password-store = {
|
||||
enable = true;
|
||||
};
|
||||
browserpass = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
# services = {
|
||||
# gpg-agent = {
|
||||
# enable = true;
|
||||
# };
|
||||
# };
|
||||
}
|
||||
Reference in New Issue
Block a user