Skip to content

Commit

Permalink
fix(flake): added missing parameter in shells.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
Wittano committed Jul 21, 2024
1 parent 57a4ac6 commit b78242a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@

nixosConfigurations = import ./nixos-configs.nix { inherit lib; };
overlays.default = overlays.overlay;
devShells.${system} = import ./shells.nix { inherit inputs lib pkgs; };
devShells.${system} = import ./shells.nix { inherit inputs lib system pkgs; };
packages.${system} = privateRepo;
templates = import ./templates.nix { inherit lib; };
};
Expand Down
4 changes: 2 additions & 2 deletions shells.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ inputs, lib, pkgs, ... }: with lib;
with lib.my; let
{ inputs, lib, pkgs, system, ... }:
let
shellPkgs = import inputs.nixpkgs-unstable {
inherit system;

Expand Down

0 comments on commit b78242a

Please sign in to comment.