Surface-Nixos/school-configuration.nix

21 lines
369 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
nmap
wireshark
podman-compose
];
virtualisation.virtualbox.host.enable = true;
users.extraGroups.vboxusers.members = [ "caleb" ];
#podman
virtualisation = {
podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
};
};
}