mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-12 06:19:00 +00:00
12 lines
298 B
Nix
12 lines
298 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
let foodogsquaredLib = import ../../../lib { inherit pkgs; };
|
|
in {
|
|
_module.args.foodogsquaredLib = foodogsquaredLib.extend (final: prev: {
|
|
wrapper-manager = import ../../../lib/env-specific/wrapper-manager.nix {
|
|
inherit pkgs lib;
|
|
self = final;
|
|
};
|
|
});
|
|
}
|