diff --git a/doc/concepts/suites.md b/doc/concepts/suites.md index 68bb8685..e6a8bff7 100644 --- a/doc/concepts/suites.md +++ b/doc/concepts/suites.md @@ -6,6 +6,8 @@ profiles. For good examples, check out the suites defined in the community In the future, we will use suites as a mechanism for deploying various machine types which don't depend on hardware, such as vm's and containers. +They are defined in `profiles/suites.nix`. + ## Definition ```nix rec { diff --git a/flake.nix b/flake.nix index 24c9a4b7..a9551d84 100644 --- a/flake.nix +++ b/flake.nix @@ -37,7 +37,7 @@ inherit self; hosts = ./hosts; packages = import ./pkgs; - suites = import ./suites; + suites = import ./profiles/suites.nix; extern = import ./extern; overrides = import ./extern/overrides.nix; overlays = ./overlays; diff --git a/suites/default.nix b/profiles/suites.nix similarity index 100% rename from suites/default.nix rename to profiles/suites.nix