about summary refs log tree commit diff
path: root/home/profiles/security/default.nix
blob: b64de228a755bd46dd47a05c973ded6085ddc237 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ config, lib, pkgs, ... }:
let cfg = config.profiles.security;
in
{
  options.profiles.security = {
    enable = lib.mkEnableOption
      "Profile for security-related packages";
  };

  config = lib.mkIf cfg.enable {
    home.packages = [
      pkgs.yubikey-manager
      pkgs.age-plugin-yubikey

      pkgs.keepassxc
      pkgs.bitwarden
      pkgs.bitwarden-cli

      pkgs.keyutils

      pkgs.protonvpn-gui
    ];
  };
}