about summary refs log tree commit diff
path: root/nixos/modules/programs/sniffnet.nix
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-05-09 15:48:56 -0400
committerfigsoda <figsoda@pm.me>2023-05-09 15:53:34 -0400
commit282e5e03a859f96fb6288653d92e070a3a2e173d (patch)
treecac78acdd6f07c34f24b6d4919206ae04232a3f8 /nixos/modules/programs/sniffnet.nix
parent5d74e13d2c1b0c92e791c8f2f07f58d854a4bd31 (diff)
nixos/sniffnet: init
Diffstat (limited to 'nixos/modules/programs/sniffnet.nix')
-rw-r--r--nixos/modules/programs/sniffnet.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/nixos/modules/programs/sniffnet.nix b/nixos/modules/programs/sniffnet.nix
new file mode 100644
index 0000000000000..98e9f628a9bce
--- /dev/null
+++ b/nixos/modules/programs/sniffnet.nix
@@ -0,0 +1,24 @@
+{ config, lib, pkgs, ... }:
+
+let
+  cfg = config.programs.sniffnet;
+in
+
+{
+  options = {
+    programs.sniffnet = {
+      enable = lib.mkEnableOption (lib.mdDoc "sniffnet");
+    };
+  };
+
+  config = lib.mkIf cfg.enable {
+    security.wrappers.sniffnet = {
+      owner = "root";
+      group = "root";
+      capabilities = "cap_net_raw,cap_net_admin=eip";
+      source = "${pkgs.sniffnet}/bin/sniffnet";
+    };
+  };
+
+  meta.maintainers = with lib.maintainers; [ figsoda ];
+}