Skip to content

Commit

Permalink
mkFlake: also pass self.inputs to lib
Browse files Browse the repository at this point in the history
  • Loading branch information
Pacman99 committed Apr 1, 2021
1 parent a868ed1 commit 683c606
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/mkFlake/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ let
overlay = cfg.packages;
inherit (cfg) overlays;

lib = import "${devos}/lib" { inherit self nixos inputs; };
lib = import "${devos}/lib" {
inherit self nixos;
inputs = inputs // self.inputs;
};

deploy.nodes = os.mkNodes deploy self.nixosConfigurations;
};
Expand Down

0 comments on commit 683c606

Please sign in to comment.