add wireshark

This commit is contained in:
2026-01-05 00:00:27 +01:00
parent 24153ddc8f
commit 20559179a7
3 changed files with 14 additions and 7 deletions

3
.gitignore vendored
View File

@@ -6,6 +6,7 @@ Code/
composer/ composer/
dconf/ dconf/
environment.d/ environment.d/
evince/
filezilla/ filezilla/
forge/ forge/
gdu/ gdu/
@@ -41,6 +42,8 @@ Vencord/
vlc/ vlc/
wal/ wal/
wallust/ wallust/
wireshark
kleopatrarc kleopatrarc
kritadisplayrc kritadisplayrc
kritarc kritarc

View File

@@ -14,7 +14,7 @@ print-at-time=
output-bin=FaceUp output-bin=FaceUp
cover-after=none cover-after=none
print-at=now print-at=now
printer=EPSON_L3270_Series printer=EPSON_L3270_Series@EPSOND80395.local
cups-cupsPrintQuality=Normal cups-cupsPrintQuality=Normal
cups-job-sheets=none,none cups-job-sheets=none,none
resolution=120 resolution=120
@@ -27,8 +27,8 @@ PPDName=A4
DisplayName=A4 DisplayName=A4
Width=210 Width=210
Height=297 Height=297
MarginTop=3.0000106811523435 MarginTop=6.3499999999999996
MarginBottom=2.9999999152289494 MarginBottom=14.224
MarginLeft=2.9999999152289494 MarginLeft=6.3499999999999996
MarginRight=2.9999891493055553 MarginRight=6.3499999999999996
Orientation=portrait Orientation=portrait

View File

@@ -191,7 +191,7 @@
users.users.lusia = { users.users.lusia = {
isNormalUser = true; isNormalUser = true;
description = "Lukrecja"; description = "Lukrecja";
extraGroups = [ "wheel" "networkmanager" "docker" "plugdev" "scanner" "lp" ]; extraGroups = [ "wheel" "networkmanager" "docker" "plugdev" "scanner" "lp" "wireshark" ];
initialPassword = "pass"; initialPassword = "pass";
shell = pkgs.fish; shell = pkgs.fish;
}; };
@@ -240,6 +240,10 @@
gvfs gvfs
]; ];
# Enable Wireshark with proper groups
programs.wireshark.enable = true;
programs.wireshark.package = pkgs.wireshark;
# Fonts # Fonts
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
noto-fonts noto-fonts
@@ -290,7 +294,7 @@
# Enable OpenTabletDriver # Enable OpenTabletDriver
hardware.opentabletdriver.enable = true; hardware.opentabletdriver.enable = true;
hardware.uinput.enable = true; hardware.uinput.enable = true;
boot.kernelModules = [ "uinput" ]; boot.kernelModules = [ "uinput" "usbmon" ];
# Enable PPD for power options # Enable PPD for power options
services.power-profiles-daemon.enable = true; services.power-profiles-daemon.enable = true;