mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-24 12:19:00 +00:00
14 lines
338 B
Nix
14 lines
338 B
Nix
# 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 = ./setups.nix;
|
|
};
|
|
}
|