mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
66bda599f4
Also move the `mn` executable from the Python module to the main package.
20 lines
359 B
Nix
20 lines
359 B
Nix
# Global configuration for mininet
|
|
# kernel must have NETNS/VETH/SCHED
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.programs.mininet;
|
|
in
|
|
{
|
|
options.programs.mininet.enable = mkEnableOption (lib.mdDoc "Mininet");
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
virtualisation.vswitch.enable = true;
|
|
|
|
environment.systemPackages = [ pkgs.mininet ];
|
|
};
|
|
}
|