nixmms
Open in Telegram
236
Subscribers
No data24 hours
No data7 days
No data30 days
Posts Archive
235
Repost from N/a
Nix as a technology isn't alone:
- Windows Vista and onward introduced a centralized WinSxS store for system components (and it was originally introduced in Windows 98) https://en.wikipedia.org/wiki/Side-by-side_assembly
- UNIX had Encap Package Manager https://www.linuxjournal.com/article/6694, Solaris and IRIX had their versioned packages
- GoboLinux https://en.wikipedia.org/wiki/GoboLinux
- Plan 9 arguably had the earliest Nix-like implementation of a store https://en.wikipedia.org/wiki/Venti_(software)
235
Repost from N/a
lyc@adrastea:~flakes/ > nixos-rebuild boot --flake .# --sudo -L
building the system configuration...
[0/961 built, 16/802/2309 copied (10.0/26.2 GiB), 2.7/6.5 GiB DL
和意为,这是更了啥
235
+1
Not sure if anyone needs this, but I found that nixpkgs itself has documentation and useful pages like buildGoModule and other language wrappers, wrote an alias with fzf search and html rendering of markdown without searching everything on Github. 😼
OUT="$(mktemp -d)/doc.html" && DOC_DIR="$(nix flake metadata nixpkgs --json | nix run nixpkgs#jq -- -r .path)/doc" && FILE="$(find "$DOC_DIR" -name '*.md' -printf '%P\n' | nix run nixpkgs#fzf)" && nix run nixpkgs#pandoc -- "$DOC_DIR/$FILE" -s --embed-resources -c https://cdn.jsdelivr.net/npm/water.css@2/out/water.css --toc --number-sections --highlight-style=zenburn -o "$OUT" && xdg-open "$OUT"
(Working on flake-based configurations)235
Repost from 🧢🎀@nnknht(!) 🇺🇦🏳️🌈🇱🇷🇪🇺
ascii cat randomizer. install. share. add to motd. 😼
✵qshqn media✵
235
{ meow, ... }:
{
MEOW.meow.meow.meow = {
meow.meow.meow.meow.meow.meow.meow.meow = mkMeow (meow: {
meow.meow.meow.meow.meow = true;
}) "meow.meow.meow.meow.meow.meow.meow.meow, meow";
meow.meow.meow = [ meow ];
};
}