nixos/homeConfig/modules/security.nix
2023-06-06 00:27:11 -04:00

14 lines
257 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 = [
keepassxc wireguard-tools ipscan
];
};
}