Nix: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
(Created page with "== Nix == '''⚠️ This is third-party installation method without official support''' Nix is a cross-platform package manager for Unix-like systems, supporting Linux, macOS and Windows Subsystem for Linux (WSL) === Usage === Nix configuration <code>environment.systemPackages = [ pkgs.nsis ];</code> Nix shell <code>nix-shell -p nsis</code> === Related Links === * [https://nixos.org/ NixOS] * [https://github.com/NixOS/nixpkgs/blob/master/pkgs/by-name/ns/nsis/pac...")
 
(No difference)

Latest revision as of 13:49, 15 June 2025

Nix

⚠️ This is third-party installation method without official support

Nix is a cross-platform package manager for Unix-like systems, supporting Linux, macOS and Windows Subsystem for Linux (WSL)

Usage

Nix configuration

environment.systemPackages = [ pkgs.nsis ];

Nix shell

nix-shell -p nsis

Related Links