Skip to content

Commit

Permalink
Pin docker
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw committed Aug 3, 2023
1 parent 301164b commit 8e83285
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
17 changes: 17 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
inputs = {
utils.url = "github:numtide/flake-utils";
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
docker-pinned-nixpkgs.url = "github:nixos/nixpkgs/b6bbc53029a31f788ffed9ea2d459f0bb0f0fbfc";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
darwin = {
Expand Down Expand Up @@ -32,7 +33,7 @@
, vscode-extensions
, vscode-server
, ...
}:
}@inputs:
let
mkOverlays = system: [
(final: prev: {
Expand All @@ -46,6 +47,12 @@
wally = final.callPackage ./derivations/wally { };
cert-info = final.callPackage ./derivations/cert-info { };
})
# pin docker client
(
self: super: {
docker = inputs.docker-pinned-nixpkgs.legacyPackages.${system}.docker;
}
)
# override the version of xattr for poetry
(
let
Expand Down

0 comments on commit 8e83285

Please sign in to comment.