flake: rework modules folder structure
This commit is contained in:
parent
5d64c56d40
commit
0952665f6b
56 changed files with 3 additions and 3 deletions
22
modules/home/cliPrograms/pass.nix
Normal file
22
modules/home/cliPrograms/pass.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
||||
options.settings.programs.pass = {
|
||||
enable = lib.mkEnableOption "enable pass";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.settings.programs.pass.enable {
|
||||
programs.password-store = {
|
||||
enable = true;
|
||||
package = pkgs.pass-wayland.withExtensions (exts: [
|
||||
exts.pass-checkup
|
||||
exts.pass-audit
|
||||
]);
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue