Skip to content

Commit

Permalink
Downgrade docker
Browse files Browse the repository at this point in the history
I need an older docker compose version as the current version from 24.11 lets me
run into the 'cycle detected at path' error [1].

[1] See docker/compose#12247
  • Loading branch information
schmir committed Dec 10, 2024
1 parent 0343f85 commit c555991
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 0 deletions.
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.

1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
inputs = {
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.11";
gpg240-nixpkgs.url = "github:nixos/nixpkgs?rev=5a8650469a9f8a1958ff9373bd27fb8e54c4365d";
nixpkgs-oldstable.url = "github:nixos/nixpkgs/nixos-24.05";

# Specify the source of Home Manager and Nixpkgs.
#nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
Expand Down
3 changes: 3 additions & 0 deletions home-configurations/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
self,
nixpkgs,
nixpkgs-stable,
nixpkgs-oldstable,
gpg240-nixpkgs,
home-manager,
system,
Expand All @@ -16,6 +17,7 @@ let
];
gpg240-pkgs = import gpg240-nixpkgs { inherit system overlays; };
pkgs-stable = import nixpkgs-stable { inherit system overlays; };
pkgs-oldstable = import nixpkgs-oldstable { inherit system overlays; };
in
home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs {
Expand All @@ -29,6 +31,7 @@ let
system
gpg240-pkgs
pkgs-stable
pkgs-oldstable
;
};
};
Expand Down
2 changes: 2 additions & 0 deletions home-configurations/x86_64-linux.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
config,
pkgs,
pkgs-oldstable,
...
}:
{
Expand All @@ -11,5 +12,6 @@
wl-clipboard
psmisc
lnav
pkgs-oldstable.docker
];
}

0 comments on commit c555991

Please sign in to comment.