mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-05-01 00:19:12 +00:00
Some checks failed
Cache outputs / build-custom-packages (push) Has been cancelled
Publish every Git push to master to FlakeHub / flakehub-publish (push) Has been cancelled
Build project site / build (push) Has been cancelled
Build devcontainers / build-devcontainers (push) Has been cancelled
Check flake outputs / check-outputs (push) Has been cancelled
Build personalized bootstrap ISO / build-iso (x86_64-linux) (push) Has been cancelled
Build project site / deploy (push) Has been cancelled
It is heavily preferred if a private config is only meant to use the project's module and also wants to avoid the heavy list of inputs it isn't going to use anyways (which happens for 99% of the time).
10 lines
214 B
Nix
10 lines
214 B
Nix
# This is simply to make using my flake modules a bit easier for my private
|
|
# configurations.
|
|
{ inputs, ... }:
|
|
|
|
{
|
|
flake.flakeModules = {
|
|
inherit (inputs.fds-core.flakeModules) default baseSetupConfig;
|
|
};
|
|
}
|