nixos-config/configs/flake-parts/flake-parts.nix

14 lines
377 B
Nix
Raw Normal View History

# This is simply to make using my flake modules a bit easier for my private
# configurations.
{ config, lib, ... }:
{
flake.flakeModules = {
default = ../../modules/flake-parts;
# A little module to make it convenient for setting up the baseline of all
# of the configurations.
baseSetupsConfig = ../../modules/flake-parts/profiles/fds-template.nix;
};
}