6 lines
167 B
Nix
6 lines
167 B
Nix
{ pkgs, ... }: {
|
|
programs.password-store = {
|
|
enable = true;
|
|
package = pkgs.pass-wayland.withExtensions (exts: [ exts.pass-checkup exts.pass-audit ]);
|
|
};
|
|
}
|