mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
15 lines
307 B
Nix
15 lines
307 B
Nix
{ pkgs, lib, config, ... }:
|
|
|
|
with lib;
|
|
let
|
|
cfg = config.modules.security;
|
|
|
|
in
|
|
{ options.modules.security = { enable = mkEnableOption "security"; };
|
|
config = mkIf cfg.enable {
|
|
home.packages = with pkgs; [
|
|
pass wireguard-tools ipscan protonmail-bridge
|
|
gnome.gnome-keyring
|
|
];
|
|
};
|
|
}
|