commit 7dbd5ba977625cff9ccfc969172ee8280c11acc9 parent 08003e262f1fac1a4870f5ffe8f312d7c8634f02 Author: Crazazy <crazazy@tilde.cafe> Date: Thu, 8 Jun 2023 14:36:49 +0200 add researchware part Diffstat:
| M | nixos.org | | | 16 | ++++++++++++++++ |
1 file changed, 16 insertions(+), 0 deletions(-)
diff --git a/nixos.org b/nixos.org @@ -305,6 +305,22 @@ stuff ]; } #+end_src +*** Researchware + I am doing a research project and I need certain software to make that happen + #+begin_src nix :noweb-ref no + { + virtualisation.vswitch.enable = true; + environment.systemPackages = with pkgs; [ + mininet + # not universal for all pythons but it works for now + (python3.withPackages (p: [(p.mininet-python.overrideAttrs (_: { + postInstall = "cp $py/bin/mn $py/lib/python3.10/site-packages/mininet/__main__.py"; + }))])) + opam + bindfs + ]; + } + #+end_src *** Steam I like to play videogames sometimes, however steam also requires a little more special attention #+begin_src nix