mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:49:41 +00:00
Only pass inputs to hosts (contains everything)
This commit is contained in:
parent
9ab8cf34ac
commit
b8c6ed6ca4
|
@ -39,8 +39,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {self, nixpkgs, ...} @ inputs: let
|
outputs = {self, nixpkgs, ...} @ inputs: {
|
||||||
in {
|
nixosConfigurations = import ./hosts {inherit inputs;};
|
||||||
nixosConfigurations = import ./hosts {inherit nixpkgs inputs self;};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{ self, inputs, ... }:
|
{ inputs, ... }:
|
||||||
let
|
let
|
||||||
|
inherit (inputs) self;
|
||||||
inherit (inputs.nixpkgs) lib;
|
inherit (inputs.nixpkgs) lib;
|
||||||
|
|
||||||
# A list of shared modules that ALL systems need
|
# A list of shared modules that ALL systems need
|
||||||
|
|
Loading…
Reference in a new issue