From 20559179a7703bff7e5dc996d520a1bc51227dbc Mon Sep 17 00:00:00 2001 From: Lukrecja Date: Mon, 5 Jan 2026 00:00:27 +0100 Subject: [PATCH] add wireshark --- .gitignore | 3 +++ evince/print-settings | 10 +++++----- nixos/configuration.nix | 8 ++++++-- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index fa67f37..e2b95e8 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ Code/ composer/ dconf/ environment.d/ +evince/ filezilla/ forge/ gdu/ @@ -41,6 +42,8 @@ Vencord/ vlc/ wal/ wallust/ +wireshark + kleopatrarc kritadisplayrc kritarc diff --git a/evince/print-settings b/evince/print-settings index 5f739c0..bab4abf 100644 --- a/evince/print-settings +++ b/evince/print-settings @@ -14,7 +14,7 @@ print-at-time= output-bin=FaceUp cover-after=none print-at=now -printer=EPSON_L3270_Series +printer=EPSON_L3270_Series@EPSOND80395.local cups-cupsPrintQuality=Normal cups-job-sheets=none,none resolution=120 @@ -27,8 +27,8 @@ PPDName=A4 DisplayName=A4 Width=210 Height=297 -MarginTop=3.0000106811523435 -MarginBottom=2.9999999152289494 -MarginLeft=2.9999999152289494 -MarginRight=2.9999891493055553 +MarginTop=6.3499999999999996 +MarginBottom=14.224 +MarginLeft=6.3499999999999996 +MarginRight=6.3499999999999996 Orientation=portrait diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 4796257..1bd27de 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -191,7 +191,7 @@ users.users.lusia = { isNormalUser = true; description = "Lukrecja"; - extraGroups = [ "wheel" "networkmanager" "docker" "plugdev" "scanner" "lp" ]; + extraGroups = [ "wheel" "networkmanager" "docker" "plugdev" "scanner" "lp" "wireshark" ]; initialPassword = "pass"; shell = pkgs.fish; }; @@ -240,6 +240,10 @@ gvfs ]; + # Enable Wireshark with proper groups + programs.wireshark.enable = true; + programs.wireshark.package = pkgs.wireshark; + # Fonts fonts.packages = with pkgs; [ noto-fonts @@ -290,7 +294,7 @@ # Enable OpenTabletDriver hardware.opentabletdriver.enable = true; hardware.uinput.enable = true; - boot.kernelModules = [ "uinput" ]; + boot.kernelModules = [ "uinput" "usbmon" ]; # Enable PPD for power options services.power-profiles-daemon.enable = true;