chore: bump lockfile

This commit is contained in:
2026-03-09 00:18:17 +01:00
parent a6cc138507
commit db9e82119d
2 changed files with 42 additions and 35 deletions

View File

@@ -54,17 +54,24 @@
my-lib = import ./lib { inherit (nixpkgs) lib; };
overlays = [
(_: prev: {
inherit
(
(import inputs.nixpkgs-master {
inherit (prev.stdenv.hostPlatform) system;
inherit (prev) config;
})
)
claude-code
;
})
(
_: prev:
let
pkgs-unstable = import inputs.nixpkgs-unstable {
inherit (prev.stdenv.hostPlatform) system;
inherit (prev) config;
};
pkgs-master = import inputs.nixpkgs-master {
inherit (prev.stdenv.hostPlatform) system;
inherit (prev) config;
};
in
{
inherit (pkgs-master) claude-code;
# TODO:(@janezicmatej) 2026-03-09 error with stable for telegram-desktop
inherit (pkgs-unstable) telegram-desktop;
}
)
];
mkHost = my-lib.mkHost {