mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
Gabriel Arazas
025b4f043a
This is to make wrapper-manager-fds easier to bootstrap whether used with flakes or not.
19 lines
425 B
Nix
19 lines
425 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;
|
|
};
|
|
|
|
lib = import ./lib/env.nix;
|
|
wrapperManagerLib = ./lib;
|
|
}
|