wireshark

This commit is contained in:
Vivian 2024-02-20 16:18:54 +01:00
parent 4960ed0866
commit 8d7f778b65
3 changed files with 18 additions and 7 deletions

View file

@ -8,6 +8,7 @@
./hardware-configuration.nix
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-z
./hardware.nix
./uni.nix
];
meta = {
@ -15,11 +16,6 @@
isLaptop = true;
};
programs.wireshark.enable = true;
users.extraUsers.vivian.extraGroups = [ "wireshark" ];
virtualisation.lxc.enable = true;
# Bootloader.
boot = {
bootspec.enable = true;

View file

@ -0,0 +1,15 @@
# Config options needed for various university courses, such as:
# * Wireless IoT and Local Area Networks
# * Network Security
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ docker-compose ];
programs.wireshark.enable = true;
programs.wireshark.package = pkgs.wireshark;
users.extraUsers.vivian.extraGroups = [ "wireshark" "docker" ];
virtualisation.lxc.enable = true;
virtualisation.podman.enable = false;
virtualisation.docker.enable = true;
virtualisation.docker.storageDriver = "btrfs";
}