mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-01-31 04:58:17 +00:00
19 lines
456 B
Nix
19 lines
456 B
Nix
|
# We just keep this attribute set for forward compatability in case it became
|
||
|
# required for users to pass something like the nixpkgs instance.
|
||
|
{ }:
|
||
|
|
||
|
{
|
||
|
nixosModules = rec {
|
||
|
default = wrapper-manager;
|
||
|
wrapper-manager = ./modules/env/nixos;
|
||
|
};
|
||
|
|
||
|
homeModules = rec {
|
||
|
default = wrapper-manager;
|
||
|
wrapper-manager = ./modules/env/home-manager;
|
||
|
};
|
||
|
|
||
|
wrapperManagerModules.default = ./modules/wrapper-manager;
|
||
|
wrapperManagerLib = ./lib;
|
||
|
}
|