Commit e57efc6c authored by Atemu's avatar Atemu Committed by Anderson Torres
Browse files

doc:fhs-envs: format example properly

That sort of formatting wouldn't be accepted into Nixpkgs. We shouldn't format
an example like that.
parent 8912c50f
Loading
Loading
Loading
Loading
+12 −12
Original line number Diff line number Diff line
@@ -29,16 +29,16 @@ One can create a simple environment using a `shell.nix` like that:

(pkgs.buildFHSEnv {
  name = "simple-x11-env";
  targetPkgs = pkgs: (with pkgs;
    [ udev
  targetPkgs = pkgs: (with pkgs; [
    udev
    alsa-lib
    ]) ++ (with pkgs.xorg;
    [ libX11
  ]) ++ (with pkgs.xorg; [
    libX11
    libXcursor
    libXrandr
  ]);
  multiPkgs = pkgs: (with pkgs;
    [ udev
  multiPkgs = pkgs: (with pkgs; [
    udev
    alsa-lib
  ]);
  runScript = "bash";