mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +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;
|
||
|
}
|