clean wireshark
This commit is contained in:
parent
20413934e4
commit
6d245ab923
@ -28,12 +28,12 @@ in
|
||||
gaming.enable = true;
|
||||
};
|
||||
tor.enable = true;
|
||||
wireshark.enable = true;
|
||||
alacritty.enable = true;
|
||||
mail.enable = true;
|
||||
ardour.enable = true;
|
||||
};
|
||||
programs.firefox.enable = true;
|
||||
programs.wireshark.enable = true;
|
||||
environment.systemPackages = with pkgs; [
|
||||
librewolf
|
||||
prismlauncher
|
||||
|
||||
@ -37,7 +37,7 @@ in
|
||||
mail.enable = true;
|
||||
};
|
||||
programs.firefox.enable = true;
|
||||
|
||||
programs.wireshark.enable = true;
|
||||
networking.networkmanager.enable = true;
|
||||
environment.systemPackages = with pkgs; [
|
||||
networkmanagerapplet
|
||||
|
||||
@ -2,7 +2,6 @@
|
||||
{
|
||||
imports = [
|
||||
./openssh.nix
|
||||
./wireshark.nix
|
||||
./mail.nix
|
||||
];
|
||||
}
|
||||
|
||||
@ -1,21 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (lib) mkIf mkOption types;
|
||||
in
|
||||
{
|
||||
options.smayzy.wireshark.enable = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = "wireshark";
|
||||
};
|
||||
|
||||
config = mkIf config.smayzy.wireshark.enable {
|
||||
programs.wireshark.enable = true;
|
||||
environment.systemPackages = with pkgs; [ wireshark ];
|
||||
};
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user