more net sec stuff
This commit is contained in:
parent
8d7f778b65
commit
4416a21e47
6 changed files with 60 additions and 52 deletions
|
@ -16,6 +16,10 @@
|
|||
isLaptop = true;
|
||||
};
|
||||
|
||||
users.users.vivian.extraGroups = [ "adbusers" ];
|
||||
|
||||
|
||||
|
||||
# Bootloader.
|
||||
boot = {
|
||||
bootspec.enable = true;
|
||||
|
|
|
@ -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" ];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue