create passwordstore module
This commit is contained in:
parent
73dd4a55de
commit
0cd3802686
3 changed files with 19 additions and 8 deletions
14
user/pass.nix
Normal file
14
user/pass.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ config, pkgs, lib, inputs, ... }: {
|
||||
config = {
|
||||
programs.password-store.enable = true;
|
||||
services = {
|
||||
pass-secret-service.enable = true;
|
||||
password-store-sync.enable = true;
|
||||
};
|
||||
home.packages = with pkgs; [
|
||||
pass
|
||||
wpass
|
||||
_gpg-unlock
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue