diff options
| author | Leonardo <noreply@leoflo.me> | 2025-12-01 18:05:59 +0100 |
|---|---|---|
| committer | Leonardo <noreply@leoflo.me> | 2025-12-01 18:05:59 +0100 |
| commit | e12ad682ed596fb427c01c253e169d2da6217e88 (patch) | |
| tree | e822635e3b850818324f1d1703118fce20d5a514 /hermes | |
| parent | ca396e3ae1794c73742957acb55ce7a7d04633fc (diff) | |
| download | nixos-e12ad682ed596fb427c01c253e169d2da6217e88.tar.gz nixos-e12ad682ed596fb427c01c253e169d2da6217e88.zip | |
rimossi alcuni programmi
Diffstat (limited to 'hermes')
| -rw-r--r-- | hermes/nixos/networking.nix | 7 | ||||
| -rw-r--r-- | hermes/nixos/programs/cybersec.nix | 12 | ||||
| -rw-r--r-- | hermes/nixos/programs/games.nix | 4 |
3 files changed, 10 insertions, 13 deletions
diff --git a/hermes/nixos/networking.nix b/hermes/nixos/networking.nix index 00e1574..90b66fa 100644 --- a/hermes/nixos/networking.nix +++ b/hermes/nixos/networking.nix @@ -1,4 +1,4 @@ -{...}: { +{pkgs, ...}: { networking = { hostName = "hermes"; @@ -22,4 +22,9 @@ ]; }; }; + + # Packages + environment.systemPackages = with pkgs; [ + openfortivpn openfortivpn-webview + ]; } diff --git a/hermes/nixos/programs/cybersec.nix b/hermes/nixos/programs/cybersec.nix index 1c70ef1..b6b0a95 100644 --- a/hermes/nixos/programs/cybersec.nix +++ b/hermes/nixos/programs/cybersec.nix @@ -1,16 +1,12 @@ -{lib, config, pkgs, ...}: - let - rizin = pkgs.rizin.withPlugins(ps: with ps; [ jsdec rz-ghidra sigdb ]); - cutter = pkgs.cutter.withPlugins(ps: with ps; [ rz-ghidra ]); - in { +{lib, config, pkgs, ...}: { options.cybersec.enable = lib.mkEnableOption "cybersecurity tooling"; config = lib.mkIf config.cybersec.enable { # Packages environment.systemPackages = with pkgs; [ - ascii file binwalk codeql pwntools - gnat15 python313 gdb gef rizin - ghidra-bin cutter binaryninja-free + ascii file binwalk pwntools + gnat15 python313 gdb gef gf + ghidra-bin dig wireshark-qt postman burpsuite ]; diff --git a/hermes/nixos/programs/games.nix b/hermes/nixos/programs/games.nix index 84df9cb..8d9fb99 100644 --- a/hermes/nixos/programs/games.nix +++ b/hermes/nixos/programs/games.nix @@ -24,10 +24,6 @@ programs.obs-studio = { enable = true; enableVirtualCamera = true; - - #plugins = with pkgs.obs-studio-plugins; [ - # droidcam-obs - #]; }; }; } |
