Surface-Nixos/school-configuration.nix

21 lines
369 B
Nix
Raw Normal View History

2024-01-29 23:07:13 -05:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
nmap
wireshark
2024-02-12 14:54:01 -05:00
podman-compose
2024-01-29 23:07:13 -05:00
];
2024-01-31 08:51:02 -05:00
virtualisation.virtualbox.host.enable = true;
users.extraGroups.vboxusers.members = [ "caleb" ];
2024-02-12 14:54:01 -05:00
#podman
virtualisation = {
podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
};
};
2024-01-29 23:07:13 -05:00
}