summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2024-04-23 20:45:00 -0600
committerDevin Finlinson <devin.finlinson@pm.me>2024-04-23 20:45:00 -0600
commit877d7449dc71830ae35d6da27e8f889ecbfa1907 (patch)
tree5935b8adb2f1df96e5b790cded7e66cacfbff715
parent2ead7d37c68af70a15e4ff63648599543fe946af (diff)
endless quest to get wireguard to work
-rw-r--r--home-manager/home.nix1
-rw-r--r--machines/zenbook/configuration.nix6
-rw-r--r--modules/users/defin.nix2
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";