Deployment and lifecycle management for Nix
0
fork

Configure Feed

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

bump nixpkgs to get nextls

+8 -61
+1 -1
.envrc
··· 17 17 RELEASE_COOKIE=$(cat "$RELEASE_COOKIE_FILE") 18 18 export RELEASE_COOKIE 19 19 20 - genSecret "$SOWER_SECRET_KEY_BASE_FILE" 20 + genSecret "$PWD/.dev-secret-key-base" 21 21 22 22 export SOWER_BOOTSTRAP_TOKEN_FILE="$PWD/.bootstrap.token" 23 23 genSecret "$SOWER_BOOTSTRAP_TOKEN_FILE"
+5 -57
flake.lock
··· 112 112 "type": "github" 113 113 } 114 114 }, 115 - "next-ls": { 116 - "inputs": { 117 - "nixpkgs": "nixpkgs_2", 118 - "zigpkgs": "zigpkgs" 119 - }, 120 - "locked": { 121 - "lastModified": 1720036593, 122 - "narHash": "sha256-jI7/BcS9CimCQskXd7Cq3EGPuc9l4L7Gre8hor58ags=", 123 - "owner": "elixir-tools", 124 - "repo": "next-ls", 125 - "rev": "fb979c3c9f9afc7b3469ca2a433be302742317db", 126 - "type": "github" 127 - }, 128 - "original": { 129 - "owner": "elixir-tools", 130 - "repo": "next-ls", 131 - "type": "github" 132 - } 133 - }, 134 115 "nixpkgs": { 135 116 "locked": { 136 117 "lastModified": 1711401922, ··· 177 158 }, 178 159 "nixpkgs_2": { 179 160 "locked": { 180 - "lastModified": 1719075281, 181 - "narHash": "sha256-CyyxvOwFf12I91PBWz43iGT1kjsf5oi6ax7CrvaMyAo=", 182 - "owner": "NixOS", 183 - "repo": "nixpkgs", 184 - "rev": "a71e967ef3694799d0c418c98332f7ff4cc5f6af", 185 - "type": "github" 186 - }, 187 - "original": { 188 - "owner": "NixOS", 189 - "ref": "nixos-unstable", 190 - "repo": "nixpkgs", 191 - "type": "github" 192 - } 193 - }, 194 - "nixpkgs_3": { 195 - "locked": { 196 - "lastModified": 1719848872, 197 - "narHash": "sha256-H3+EC5cYuq+gQW8y0lSrrDZfH71LB4DAf+TDFyvwCNA=", 161 + "lastModified": 1720149507, 162 + "narHash": "sha256-OFJoD1jjxzFlY1tAsehEWVA88DbU5smzDPQuu9SmnXY=", 198 163 "owner": "nixos", 199 164 "repo": "nixpkgs", 200 - "rev": "00d80d13810dbfea8ab4ed1009b09100cca86ba8", 165 + "rev": "d9c0b9d611277e42e6db055636ba0409c59db6d2", 201 166 "type": "github" 202 167 }, 203 168 "original": { 204 169 "owner": "nixos", 205 - "ref": "nixos-unstable", 170 + "ref": "nixpkgs-unstable", 206 171 "repo": "nixpkgs", 207 172 "type": "github" 208 173 } ··· 227 192 "attic": "attic", 228 193 "crane": "crane_2", 229 194 "flake-parts": "flake-parts", 230 - "next-ls": "next-ls", 231 - "nixpkgs": "nixpkgs_3", 195 + "nixpkgs": "nixpkgs_2", 232 196 "process-compose-flake": "process-compose-flake", 233 197 "rust-overlay": "rust-overlay", 234 198 "services-flake": "services-flake" ··· 266 230 "original": { 267 231 "owner": "juspay", 268 232 "repo": "services-flake", 269 - "type": "github" 270 - } 271 - }, 272 - "zigpkgs": { 273 - "locked": { 274 - "lastModified": 1704057613, 275 - "narHash": "sha256-5tPUpZlCpgqDQVUDlmhDhKn1h0A68jba8/DYie+yNC4=", 276 - "owner": "NixOS", 277 - "repo": "nixpkgs", 278 - "rev": "592a779f3c5e7bce1a02027abe11b7996816223f", 279 - "type": "github" 280 - }, 281 - "original": { 282 - "owner": "NixOS", 283 - "repo": "nixpkgs", 284 - "rev": "592a779f3c5e7bce1a02027abe11b7996816223f", 285 233 "type": "github" 286 234 } 287 235 }
+2 -3
flake.nix
··· 4 4 crane.inputs.nixpkgs.follows = "nixpkgs"; 5 5 crane.url = "github:ipetkov/crane"; 6 6 flake-parts.url = "github:hercules-ci/flake-parts"; 7 - next-ls.url = "github:elixir-tools/next-ls"; 8 - nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; 7 + nixpkgs.url = "github:nixos/nixpkgs?ref=nixpkgs-unstable"; 9 8 process-compose-flake.url = "github:Platonic-Systems/process-compose-flake"; 10 9 rust-overlay.inputs.nixpkgs.follows = "nixpkgs"; 11 10 rust-overlay.url = "github:oxalica/rust-overlay"; ··· 57 56 # elixir 58 57 elixir 59 58 beamPackages.elixir-ls 60 - inputs'.next-ls.packages.default 59 + pkgs.next-ls 61 60 62 61 # rust 63 62 pkgs.cargo