lint: remove `//`, replace with `recursiveUpdate`

This commit is contained in:
Timothy DeHerrera 2020-07-30 23:32:53 -06:00
parent 10171142e5
commit 068be3f5bf
No known key found for this signature in database
GPG Key ID: 8985725DB5B0C122
1 changed files with 9 additions and 3 deletions

View File

@ -9,7 +9,7 @@
let
inherit (builtins) attrNames attrValues readDir;
inherit (nixpkgs) lib;
inherit (lib) removeSuffix;
inherit (lib) removeSuffix recursiveUpdate;
inherit (utils) pathsToImportedAttrs;
utils = import ./lib/utils.nix { inherit lib; };
@ -29,7 +29,11 @@
in
{
nixosConfigurations =
import ./hosts (inputs // { inherit system pkgs unstablePkgs utils; });
import ./hosts (recursiveUpdate inputs {
inherit system pkgs
unstablePkgs utils;
}
);
devShell."${system}" = import ./shell.nix { inherit pkgs; };
@ -60,6 +64,8 @@
profilesAttrs = { profiles = pathsToImportedAttrs profilesList; };
in
cachixAttrs // modulesAttrs // profilesAttrs;
recursiveUpdate
(recursiveUpdate cachixAttrs modulesAttrs)
profilesAttrs;
};
}