move haze home-manager config to shared modules
This commit is contained in:
parent
011bd84e6b
commit
62987add4b
8 changed files with 149 additions and 37 deletions
14
home/desktop/pass.nix
Normal file
14
home/desktop/pass.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [
|
||||
pkgs.pass
|
||||
pkgs.gnupg
|
||||
pkgs.pinentry-gnome3
|
||||
];
|
||||
|
||||
programs.gpg.enable = true;
|
||||
services.gpg-agent = {
|
||||
enable = true;
|
||||
pinentryPackage = pkgs.pinentry-gnome3;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue