suites: move to profles/suites.nix

This commit is contained in:
Timothy DeHerrera 2021-04-18 21:13:12 -06:00
parent e13a65b33c
commit e1e0f99af9
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122
3 changed files with 3 additions and 1 deletions

View file

@ -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 {

View file

@ -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;