Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bbigras committed Jan 20, 2024
1 parent 8c672b2 commit 1083fbd
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,13 @@

perSystem = { pkgs, system, ... }:
{
packages.default = (import ./build.nix { inherit pkgs dendrite; }).main;
packages.dendrite = (import ./build.nix { inherit pkgs dendrite; }).main;
packages.dockerImage = import ./image.nix {
inherit pkgs dendrite;
inherit (self) lastModifiedDate;
packages = {
default = (import ./build.nix { inherit pkgs dendrite; }).main;
dendrite = (import ./build.nix { inherit pkgs dendrite; }).main;
dockerImage = import ./image.nix {
inherit pkgs dendrite;
inherit (self) lastModifiedDate;
};
};
devShells.default = import ./shell.nix { inherit pkgs pre-commit-hooks system; };
};
Expand Down

0 comments on commit 1083fbd

Please sign in to comment.