fix: dns
This commit is contained in:
parent
a86424bb64
commit
9e05e68cc4
6 changed files with 80 additions and 6 deletions
|
|
@ -2,7 +2,7 @@ lib: inputs: self: lib.nixosSystem {
|
|||
specialArgs = inputs // { inherit inputs; inherit self; };
|
||||
modules = [
|
||||
# Extensions: nixosModules, darwinModules, overlays
|
||||
({ pkgs, lib, ... }: let
|
||||
({ pkgs, lib, inputs, ... }: let
|
||||
inherit (lib) attrValues hasAttrByPath getAttrFromPath filter;
|
||||
|
||||
collect = packagePath: (attrValues inputs)
|
||||
|
|
@ -10,7 +10,7 @@ lib: inputs: self: lib.nixosSystem {
|
|||
|> map (getAttrFromPath packagePath);
|
||||
|
||||
modules = collect [ "nixosModules" "default" ];
|
||||
extensions = modules // {
|
||||
extensions = {
|
||||
nixpkgs.overlays = collect [ "overlays" "default" ];
|
||||
imports = modules;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue