1
0
Fork 0

Fix inputs reference

This commit is contained in:
Daniel Kempkens 2022-07-31 20:49:51 +02:00
parent 7e52b0d586
commit 5ead6d2283
2 changed files with 2 additions and 1 deletions

View file

@ -46,6 +46,7 @@
inherit (inputs) nixpkgs; inherit (inputs) nixpkgs;
inherit (inputs) home-manager; inherit (inputs) home-manager;
inherit (inputs) arion; inherit (inputs) arion;
inherit inputs;
}; };
in in
config-Styx // config-sail; config-Styx // config-sail;

View file

@ -1,4 +1,4 @@
{ nixpkgs, home-manager, arion, ... }: { nixpkgs, home-manager, arion, inputs, ... }:
let let
overlay-arion = arion.overlay; overlay-arion = arion.overlay;