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): use same nixpkgs on ci and provider

+17 -23
+1 -1
shell.nix
··· 3 3 nixpkgs = 4 4 with lock.nodes.nixpkgs.locked; 5 5 builtins.fetchTarball { 6 - url = "https://github.com/${owner}/${repo}/archive/${rev}.zip"; 6 + url = url; 7 7 sha256 = narHash; 8 8 }; 9 9 in
+7 -10
templates/ci/flake.lock
··· 72 72 }, 73 73 "nixpkgs": { 74 74 "locked": { 75 - "lastModified": 1764521362, 76 - "narHash": "sha256-M101xMtWdF1eSD0xhiR8nG8CXRlHmv6V+VoY65Smwf4=", 77 - "owner": "nixos", 78 - "repo": "nixpkgs", 79 - "rev": "871b9fd269ff6246794583ce4ee1031e1da71895", 80 - "type": "github" 75 + "lastModified": 1775710090, 76 + "narHash": "sha256-WGjBfvXv/mcg5yBg+AtK1Q3FHyXfjAAeJROmg7DLYfM=", 77 + "rev": "4c1018dae018162ec878d42fec712642d214fdfa", 78 + "type": "tarball", 79 + "url": "https://releases.nixos.org/nixos/unstable/nixos-26.05pre977467.4c1018dae018/nixexprs.tar.xz" 81 80 }, 82 81 "original": { 83 - "owner": "nixos", 84 - "ref": "25.11", 85 - "repo": "nixpkgs", 86 - "type": "github" 82 + "type": "tarball", 83 + "url": "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz" 87 84 } 88 85 }, 89 86 "provider": {
+1 -1
templates/ci/flake.nix
··· 10 10 den.url = "github:vic/den"; 11 11 import-tree.url = "github:vic/import-tree"; 12 12 13 - nixpkgs.url = "github:nixos/nixpkgs/25.11"; 13 + nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"; 14 14 home-manager.url = "github:nix-community/home-manager"; 15 15 home-manager.inputs.nixpkgs.follows = "nixpkgs"; 16 16 darwin.url = "github:nix-darwin/nix-darwin";
+7 -10
templates/ci/provider/flake.lock
··· 32 32 }, 33 33 "nixpkgs": { 34 34 "locked": { 35 - "lastModified": 1764521362, 36 - "narHash": "sha256-M101xMtWdF1eSD0xhiR8nG8CXRlHmv6V+VoY65Smwf4=", 37 - "owner": "nixos", 38 - "repo": "nixpkgs", 39 - "rev": "871b9fd269ff6246794583ce4ee1031e1da71895", 40 - "type": "github" 35 + "lastModified": 1775710090, 36 + "narHash": "sha256-WGjBfvXv/mcg5yBg+AtK1Q3FHyXfjAAeJROmg7DLYfM=", 37 + "rev": "4c1018dae018162ec878d42fec712642d214fdfa", 38 + "type": "tarball", 39 + "url": "https://releases.nixos.org/nixos/unstable/nixos-26.05pre977467.4c1018dae018/nixexprs.tar.xz" 41 40 }, 42 41 "original": { 43 - "owner": "nixos", 44 - "ref": "25.11", 45 - "repo": "nixpkgs", 46 - "type": "github" 42 + "type": "tarball", 43 + "url": "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz" 47 44 } 48 45 }, 49 46 "root": {
+1 -1
templates/ci/provider/flake.nix
··· 7 7 }).config.flake; 8 8 9 9 inputs = { 10 - nixpkgs.url = "github:nixos/nixpkgs/25.11"; 10 + nixpkgs.url = "https://channels.nixos.org/nixos-unstable/nixexprs.tar.xz"; 11 11 import-tree.url = "github:vic/import-tree"; 12 12 den.url = "github:vic/den"; 13 13 };