mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-01-30 22:57:58 +00:00
21 lines
512 B
Nix
21 lines
512 B
Nix
# The user entrypoint which makes it especially important to be maintained.
|
|
#
|
|
# Anyways, 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;
|
|
};
|
|
|
|
lib = import ./lib/env.nix;
|
|
wrapperManagerLib = ./lib;
|
|
}
|