literate-config

Literate config. See <a href="../readme.org">readme.org</a> for a better-formatted version
Log | Files | Refs

commit eac372bb7167ab507dcb18873556e617ec196df3
parent 4a6b80389118ad05a24bed344ceb178de226c638
Author: Crazazy <crazazy@tilde.cafe>
Date:   Thu,  8 Jun 2023 14:36:49 +0200

add researchware part

Diffstat:
Mnixos.org | 16++++++++++++++++
1 file changed, 16 insertions(+), 0 deletions(-)

diff --git a/nixos.org b/nixos.org @@ -304,6 +304,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