- Oct 28, 2019
- Oct 23, 2019
-
-
zimbatm authored
extract the derivation to filename:lineno heuristic
-
zimbatm authored
-
zimbatm authored
This allows to have a repl-centric workflow to working on nixpkgs. Usage: :edit <package> - heuristic that find the package file path :edit <path> - just open the editor on the file path Once invoked, `nix repl` will open $EDITOR on that file path. Once the editor exits, `nix repl` will automatically reload itself.
-
- Oct 21, 2019
-
-
Eelco Dolstra authored
Fixes #3140.
-
Eelco Dolstra authored
Fix unset variable in installer
-
- Oct 19, 2019
-
-
Steven Shaw authored
-
- Oct 17, 2019
-
-
Eelco Dolstra authored
nix-channel documentation: don't suggest deprecated function
-
- Oct 11, 2019
-
-
Eelco Dolstra authored
Fixes #3138.
-
Eelco Dolstra authored
Add libatomic for 32-bit ARM
-
- Oct 10, 2019
-
-
Eelco Dolstra authored
-
- Oct 09, 2019
-
-
Eelco Dolstra authored
Remove world-writability from {profiles,gcroots}/per-user
-
Eelco Dolstra authored
-
Eelco Dolstra authored
-
Eelco Dolstra authored
700 is pointless since the store is world-readable anyway. And per-user/root/channels must be world-readable.
-
Eelco Dolstra authored
-
Eelco Dolstra authored
-
Eelco Dolstra authored
-
Eelco Dolstra authored
This is already done by the installer, so no need to do it again.
-
Eelco Dolstra authored
-
Eelco Dolstra authored
'nix-daemon' now creates subdirectories for users when they first connect. Fixes #509 (CVE-2019-17365). Should also fix #3127.
-
Eelco Dolstra authored
Otherwise, builds like NixOS VM tests may leave the terminal in a weird state and do resets.
-
Eelco Dolstra authored
-
Eelco Dolstra authored
-
Eelco Dolstra authored
-
Eelco Dolstra authored
Fixes #1892. Fixes #1865. Fixes #3119.
-
Eelco Dolstra authored
Handle empty sandbox_shell
-
Eelco Dolstra authored
-
Eelco Dolstra authored
-
Eelco Dolstra authored
Make nix-daemon.plist less fragile on macOS
-
Dan Callahan authored
We're calling `wait4path` on the full, resolved `@bindir@/nix-daemon` path. That means we're hardcoding something like: /bin/wait4path /nix/store/zs9c5xhp3zv9p23qnjxp87nl5injsi1i-nix-2.3/bin/nix-daemon && /nix/var/nix/profiles/default/bin/nix-daemon That seems unnecessarily fragile. It might be better to wait4path on the path we intend to call.
-
Eelco Dolstra authored
Don't symlink org.nixos.nix-daemon.plist in installer
-
Eelco Dolstra authored
Don’t source bashrc in pure mode
-
Matthew Bauer authored
Previously, SANDBOX_SHELL was set to empty when unavailable. This caused issues when actually generating the sandbox. Instead, just set SANDBOX_SHELL when --with-sandbox-shell= is non-empty. Alternative implementation to https://github.com/NixOS/nix/pull/3038.
-
Matthew Bauer authored
Pure mode should not try to source the user’s bashrc file. These may have many impurities that the user does not expect to get into their shell. Fixes #3090