Skip to content

Commit

Permalink
Inherit nixosSystem from the flake-extended nixpkgs-lib
Browse files Browse the repository at this point in the history
  • Loading branch information
ehllie committed Nov 9, 2023
1 parent dd5c636 commit 768677d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake-module.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{ darwin, home-manager, ... }: inputs@{ lib, config, ... }:
{ darwin, home-manager, nixpkgs, ... }: inputs@{ lib, config, ... }:
let

inherit (builtins) listToAttrs pathExists;
inherit (lib) mkOption types concatMap mapAttrsToList nixosSystem optionals;
inherit (nixpkgs.lib) mkOption types concatMap mapAttrsToList nixosSystem optionals;
inherit (darwin.lib) darwinSystem;
inherit (home-manager.lib) homeManagerConfiguration;
cfg = config.ezConfigs;
Expand Down

0 comments on commit 768677d

Please sign in to comment.