wireshark
Lint / lint (push) Failing after 2m18s Details

new
Vivian 2024-02-20 16:18:54 +01:00
parent 35adb9eb84
commit a4dd20beb5
3 changed files with 18 additions and 7 deletions

View File

@ -62,7 +62,7 @@
};
# Global Packages
environment.systemPackages = with pkgs; [ wireguard-tools sbctl podman-compose ];
environment.systemPackages = with pkgs; [ wireguard-tools sbctl ]; # ++ (if config.virtualisation.podman.enable then [ pkgs.podman-compose ] else []);
# programs.virt-manager = {
# enable = true;
@ -74,7 +74,7 @@
security.rtkit.enable = true;
virtualisation = {
podman.enable = true;
podman.enable = lib.mkDefault true;
libvirtd = {
enable = true;
qemu.package = pkgs.qemu_kvm;

View File

@ -8,6 +8,7 @@
./hardware-configuration.nix
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-z
./hardware.nix
./uni.nix
];
meta = {
@ -15,11 +16,6 @@
isLaptop = true;
};
programs.wireshark.enable = true;
users.extraUsers.vivian.extraGroups = [ "wireshark" ];
virtualisation.lxc.enable = true;
# Bootloader.
boot = {
bootspec.enable = true;

View File

@ -0,0 +1,15 @@
# Config options needed for various university courses, such as:
# * Wireless IoT and Local Area Networks
# * Network Security
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ docker-compose ];
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";
}