Skip to content

Commit

Permalink
Add files
Browse files Browse the repository at this point in the history
  • Loading branch information
D3vil0p3r committed Sep 29, 2024
1 parent 6bc8783 commit 890fe8d
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions nixos/modules/security/cyber-toolnix/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,29 @@
{ lib, config, pkgs, ... }:
{
lib,
config,
pkgs,
...
}:

with lib;

let
roles = {
blue = import ./roles/blue.nix { inherit pkgs; };
blue = import ./roles/blue.nix { inherit pkgs; };
bugbounty = import ./roles/bugbounty.nix { inherit pkgs; };
cracker = import ./roles/cracker.nix { inherit pkgs; };
dos = import ./roles/dos.nix { inherit pkgs; };
forensic = import ./roles/forensic.nix { inherit pkgs; };
malware = import ./roles/malware.nix { inherit pkgs; };
mobile = import ./roles/mobile.nix { inherit pkgs; };
network = import ./roles/network.nix { inherit pkgs; };
osint = import ./roles/osint.nix { inherit pkgs; };
red = import ./roles/red.nix { inherit pkgs; };
student = import ./roles/student.nix { inherit pkgs; };
web = import ./roles/web.nix { inherit pkgs; };
cracker = import ./roles/cracker.nix { inherit pkgs; };
dos = import ./roles/dos.nix { inherit pkgs; };
forensic = import ./roles/forensic.nix { inherit pkgs; };
malware = import ./roles/malware.nix { inherit pkgs; };
mobile = import ./roles/mobile.nix { inherit pkgs; };
network = import ./roles/network.nix { inherit pkgs; };
osint = import ./roles/osint.nix { inherit pkgs; };
red = import ./roles/red.nix { inherit pkgs; };
student = import ./roles/student.nix { inherit pkgs; };
web = import ./roles/web.nix { inherit pkgs; };
};
in {
in
{
options.cyber-toolnix = {
enable = mkOption {
type = types.bool;
Expand Down

0 comments on commit 890fe8d

Please sign in to comment.