mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
16 lines
435 B
Nix
16 lines
435 B
Nix
# All of the extra module arguments to be passed as part of the home-manager
|
|
# environment.
|
|
{ options, lib, ... }:
|
|
|
|
let
|
|
foodogsquaredLib = import ../../../lib { inherit lib; };
|
|
in
|
|
{
|
|
_module.args.foodogsquaredLib =
|
|
foodogsquaredLib.extend (self:
|
|
import ../../../lib/home-manager.nix { inherit lib; }
|
|
// lib.optionalAttrs (options?sops) {
|
|
sops-nix = import ../../../lib/sops.nix { inherit lib; };
|
|
});
|
|
}
|