more net sec stuff

This commit is contained in:
Vivian 2024-02-26 12:19:32 +01:00
parent 8d7f778b65
commit 4416a21e47
6 changed files with 60 additions and 52 deletions

View file

@ -16,6 +16,10 @@
isLaptop = true;
};
users.users.vivian.extraGroups = [ "adbusers" ];
# Bootloader.
boot = {
bootspec.enable = true;

View file

@ -2,14 +2,20 @@
# * Wireless IoT and Local Area Networks
# * Network Security
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ docker-compose ];
environment.systemPackages = with pkgs; [
docker-compose
bridge-utils
nettools
wget
];
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";
users.extraUsers.vivian.extraGroups = [ "wireshark" "docker" "lxd" ];
}