18 lines
332 B
Nix
18 lines
332 B
Nix
{...}: {
|
|
flake.homeModules.home-manager-proxmark3 = {
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
options.programs.proxmark3 = {
|
|
enable = lib.mkEnableOption "enable proxmark3";
|
|
};
|
|
|
|
config = lib.mkIf config.programs.proxmark3.enable {
|
|
home.packages = with pkgs; [
|
|
proxmark3
|
|
];
|
|
};
|
|
};
|
|
}
|