Modular, context-aware and aspect-oriented dendritic Nix configurations. Discussions: https://oeiuwq.zulipchat.com/join/nqp26cd4kngon6mo3ncgnuap/ den.oeiuwq.com
configurations den dendritic nix aspect oriented
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(ci): make shell.nix use nixpkgs from ci

+10 -1
+10 -1
shell.nix
··· 1 + let 2 + lock = builtins.fromJSON (builtins.readFile ./templates/ci/flake.lock); 3 + nixpkgs = 4 + with lock.nodes.nixpkgs.locked; 5 + builtins.fetchTarball { 6 + url = url; 7 + hash = narHash; 8 + }; 9 + in 1 10 { 2 - pkgs ? import <nixpkgs> { }, 11 + pkgs ? nixpkgs, 3 12 lib ? pkgs.lib, 4 13 ... 5 14 }: