summaryrefslogtreecommitdiff
path: root/hermes
diff options
context:
space:
mode:
Diffstat (limited to 'hermes')
-rw-r--r--hermes/nixos/networking.nix7
-rw-r--r--hermes/nixos/programs/cybersec.nix12
-rw-r--r--hermes/nixos/programs/games.nix4
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
- #];
};
};
}