@cryptotaxi247 / infra / commits / 64eac358

no longer depends on nixpkgs-unstable

the only place we were using this, was for the devshell. But it's not really clear to me if we still need this?

Jörg Thalheim committed Feb 22, 2025 at 17:16 UTC 64eac358a08fd54f1c22c2f6d17eb10c6e83a965
3 files changed +1 -23
flake.lock
-17
@@ -269,22 +269,6 @@
269 "type": "indirect"
270 }
271 },
272 - "nixpkgs-unstable": {
273 - "locked": {
274 - "lastModified": 1739667012,
275 - "narHash": "sha256-6QWdUgz2O2Mm+pYx/AYB4Rot5/s1OR1C6bt30TI81yY=",
276 - "owner": "nixos",
277 - "repo": "nixpkgs",
278 - "rev": "1dcdd535fef84d4671129a10e7072d56dca9a4d3",
279 - "type": "github"
280 - },
281 - "original": {
282 - "owner": "nixos",
283 - "ref": "nixpkgs-unstable",
284 - "repo": "nixpkgs",
285 - "type": "github"
286 - }
287 - },
272 "nixpkgs_2": {
273 "locked": {
274 "lastModified": 1732014248,
@@ -355,7 +339,6 @@
339 "flake-parts": "flake-parts",
340 "flake-utils": "flake-utils",
341 "nixpkgs": "nixpkgs",
358 - "nixpkgs-unstable": "nixpkgs-unstable",
342 "simple-nixos-mailserver": "simple-nixos-mailserver",
343 "sops-nix": "sops-nix",
344 "srvos": "srvos",
flake.nix
-1
@@ -8,7 +8,6 @@
8
9 inputs = {
10 nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
11 - nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
11 flake-parts.url = "github:hercules-ci/flake-parts";
12 flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
13
non-critical-infra/flake-module.nix
+1 -5
@@ -50,11 +50,7 @@
50 };
51
52 perSystem =
53 - { inputs', ... }:
54 - # Use the latest packages from `nixpkgs-unstable` for dev tools.
55 - let
56 - pkgs = inputs'.nixpkgs-unstable.legacyPackages;
57 - in
53 + { inputs', pkgs, ... }:
54 {
55 packages.encrypt-email = pkgs.callPackage ./packages/encrypt-email { };
56