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
doc/concepts
flake.nix
profiles

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 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. types which don't depend on hardware, such as vm's and containers.
They are defined in `profiles/suites.nix`.
## Definition ## Definition
```nix ```nix
rec { rec {

View file

@ -37,7 +37,7 @@
inherit self; inherit self;
hosts = ./hosts; hosts = ./hosts;
packages = import ./pkgs; packages = import ./pkgs;
suites = import ./suites; suites = import ./profiles/suites.nix;
extern = import ./extern; extern = import ./extern;
overrides = import ./extern/overrides.nix; overrides = import ./extern/overrides.nix;
overlays = ./overlays; overlays = ./overlays;