mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
Added pass extensions
This commit is contained in:
parent
7f83e9d606
commit
00dc854cf1
1 changed files with 7 additions and 1 deletions
|
|
@ -3,9 +3,15 @@
|
|||
with lib;
|
||||
let
|
||||
cfg = config.modules.user.security;
|
||||
pass = pkgs.pass.withExtensions (exts: with exts; [
|
||||
pass-audit
|
||||
pass-otp
|
||||
pass-update
|
||||
pass-tomb
|
||||
]);
|
||||
|
||||
in
|
||||
{ options.modules.user.security = { enable = mkEnableOption "user.security"; };
|
||||
{ options.modules.user.security = { enable = mkEnableOption "Enable security module"; };
|
||||
imports = [ ./modules ];
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue