various updates
This commit is contained in:
parent
46151ed25b
commit
f70a18723f
17 changed files with 415 additions and 116 deletions
|
@ -1,8 +1,11 @@
|
|||
# Config options needed for various university courses, such as:
|
||||
# * Wireless IoT and Local Area Networks
|
||||
# * Network Security
|
||||
{ pkgs, ... }: {
|
||||
# * Smart Phone Sensing
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
android-studio
|
||||
docker-compose
|
||||
bridge-utils
|
||||
nettools
|
||||
|
@ -19,5 +22,17 @@
|
|||
virtualisation.docker.enable = true;
|
||||
virtualisation.docker.storageDriver = "btrfs";
|
||||
|
||||
users.extraUsers.vivian.extraGroups = [ "wireshark" "docker" "lxd" ];
|
||||
users.extraUsers.vivian.extraGroups = [
|
||||
"wireshark"
|
||||
"docker"
|
||||
"lxd"
|
||||
];
|
||||
|
||||
programs.nix-ld = {
|
||||
enable = true;
|
||||
package = pkgs.nix-ld-rs;
|
||||
libraries = [
|
||||
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue