diff options
| -rw-r--r-- | home-manager/home.nix | 1 | ||||
| -rw-r--r-- | machines/zenbook/configuration.nix | 6 | ||||
| -rw-r--r-- | modules/users/defin.nix | 2 |
3 files changed, 5 insertions, 4 deletions
diff --git a/home-manager/home.nix b/home-manager/home.nix index 7b37db7..dc64818 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -91,7 +91,6 @@ linode-cli putty qbittorrent - wireshark # mpris ciscoPacketTracer8 # ciscoPacketTracer7 diff --git a/machines/zenbook/configuration.nix b/machines/zenbook/configuration.nix index 154d3cf..774400e 100644 --- a/machines/zenbook/configuration.nix +++ b/machines/zenbook/configuration.nix @@ -43,7 +43,6 @@ X11.ServerArguments = "-nolisten tcp -dpi 170"; }; }; - networking = { firewall = { # Open ports in the firewall. @@ -86,7 +85,10 @@ # Some programs need SUID wrappers, can be configured further or are # started in user sessions. programs = { - wireshark.enable = true; + wireshark = { + enable = true; + # package = pkgs.wireshark; + }; light.enable = true; mtr.enable = true; gnupg.agent = { diff --git a/modules/users/defin.nix b/modules/users/defin.nix index f254e99..fdb9cbc 100644 --- a/modules/users/defin.nix +++ b/modules/users/defin.nix @@ -7,7 +7,7 @@ users.defin = { isNormalUser = true; description = "Devin Finlinson"; - extraGroups = [ "wheel" "builders" "video" "input" "docker" "dialout" "wireshark" ]; # (wheel) Enable ‘sudo’ for the user. + extraGroups = [ "wheel" "builders" "video" "input" "docker" "dialout" "wireshark" "networkmanager" ]; # (wheel) Enable ‘sudo’ for the user. shell = pkgs.nushell; hashedPassword = "$6$UljPNAdxZ22lP3Bc$8VaEAacZxtXM3Zji2IA7Jf5fXs9pFnAVQff1d8IbfFOKCvjibceyopOAjRXa8lXtpOSJgPW1OO1dzOspqhWnz0"; |
