mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-09 22:19:42 +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
|
||||
in {
|
||||
nixosConfigurations = import ./hosts {inherit nixpkgs inputs self;};
|
||||
outputs = {self, nixpkgs, ...} @ inputs: {
|
||||
nixosConfigurations = import ./hosts {inherit inputs;};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{ self, inputs, ... }:
|
||||
{ inputs, ... }:
|
||||
let
|
||||
inherit (inputs) self;
|
||||
inherit (inputs.nixpkgs) lib;
|
||||
|
||||
# A list of shared modules that ALL systems need
|
||||
|
|
Loading…
Reference in a new issue