16 lines
492 B
Nix
16 lines
492 B
Nix
{
|
|
description = "Common NixOS configuration modules and Home Manager modules that require not other inputs beyond nixpkgs or home-manager itself. This is made by me for me and not designed to be general purpose for anyone else, but could be useful nontheless.";
|
|
inputs = { };
|
|
outputs =
|
|
{
|
|
...
|
|
}:
|
|
let
|
|
utils = import ./utils.nix;
|
|
in
|
|
with utils;
|
|
{
|
|
nixosModules = importAll ./nix_modules;
|
|
homeManagerModules = importAll ./hm_modules;
|
|
};
|
|
}
|