mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 22:57:55 +00:00
13 lines
300 B
Nix
13 lines
300 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; };
|
||
|
});
|
||
|
}
|