Skip to content

Commit

Permalink
fix: syntax error - misplaced parenthesis (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
poyhen authored Nov 11, 2024
1 parent 359c119 commit b887cf1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/best-practices/run-downloaded-binaries-on-nixos.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ add the following code to one of your Nix modules:
(let base = pkgs.appimageTools.defaultFhsEnvArgs; in
pkgs.buildFHSUserEnv (base // {
name = "fhs";
targetPkgs = pkgs: (
targetPkgs = pkgs:
# pkgs.buildFHSUserEnv provides only a minimal FHS environment,
# lacking many basic packages needed by most software.
# Therefore, we need to add them manually.
#
# pkgs.appimageTools provides basic packages required by most software.
(base.targetPkgs pkgs) ++ with pkgs; [
(base.targetPkgs pkgs) ++ (with pkgs; [
pkg-config
ncurses
# Feel free to add more packages here if needed.
Expand Down

0 comments on commit b887cf1

Please sign in to comment.