mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 08:39:42 -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;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.modules.user.security;
|
cfg = config.modules.user.security;
|
||||||
|
pass = pkgs.pass.withExtensions (exts: with exts; [
|
||||||
|
pass-audit
|
||||||
|
pass-otp
|
||||||
|
pass-update
|
||||||
|
pass-tomb
|
||||||
|
]);
|
||||||
|
|
||||||
in
|
in
|
||||||
{ options.modules.user.security = { enable = mkEnableOption "user.security"; };
|
{ options.modules.user.security = { enable = mkEnableOption "Enable security module"; };
|
||||||
imports = [ ./modules ];
|
imports = [ ./modules ];
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue