infrastructure/hosts/thalassa/aoife/uni.nix
2024-06-08 14:03:24 +02:00

35 lines
636 B
Nix

# Config options needed for various university courses, such as:
# * Wireless IoT and Local Area Networks
# * Network Security
# * Smart Phone Sensing
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ android-studio ];
programs.wireshark = {
enable = true;
package = pkgs.wireshark;
};
virtualisation = {
podman.enable = true;
docker = {
enable = false;
storageDriver = "btrfs";
};
};
users.extraUsers.vivian.extraGroups = [
# "wireshark"
# "docker"
# "lxd"
];
programs.nix-ld = {
enable = true;
package = pkgs.nix-ld-rs;
libraries = [
];
};
}