moved more packages to modules

This commit is contained in:
Leyla Becker 2025-09-04 15:23:59 -05:00
parent c31eb38229
commit 2aad75a334
21 changed files with 453 additions and 48 deletions

View file

@ -0,0 +1,17 @@
{
lib,
pkgs,
config,
osConfig,
...
}: {
options.programs.proxmark3 = {
enable = lib.mkEnableOption "enable proxmark3";
};
config = lib.mkIf config.programs.proxmark3.enable {
home.packages = with pkgs; [
proxmark3
];
};
}