Explore >> Select a destination


You are here

nora.codes
| | mdleom.com
3.7 parsecs away

Travel
| | A workaround for installing GitHub-hosted package in a IPv6-only host
| | www.zombiezen.com
4.3 parsecs away

Travel
| | I recently spent some time learning Nix after watching this talk by Xe. Nix is a package manager/build system for Linux and macOS. It does a number of things I really like: Transparent handling of source and binary packages. Includes a rich central package registry, but you can host your package descriptions or binaries anywhere. Does not require root and runs alongside any Linux distribution. Easy to pin or customize versions of individual packages. Straightforward support for project-specific dependenc...
| | nguyenhuythanh.com
4.3 parsecs away

Travel
| | I think everyone who uses NixOS should have encountered this dreaded error (I'm using a "random" binary file that comes from Codeium, which is an code completion extension powered by AI): ./language_server_linux_x64 # zsh: no such file or directory: ./language_server_linux_x64 It is quite elusive on why does this happen. After taking a while searching and reading, I "sort of" understood the problem, but can only put it to my terms like this: in other OSes (Ubuntu for example), C libraries can be found using a global PATH, while NixOS does not have the same semantic; it leads to the problem that compiled binaries cannot find the C libraries they need.
| | tonyfinn.com
19.9 parsecs away

Travel
| Nix is a tool for managing packages and system configurations in a declarative manner. Flakes are a new user interface to clean up many of its rough edges. This guide explains how to use Nix from first principles, via a Flake-focused approach.