pub-solar-os/doc/concepts/suites.md

27 lines
677 B
Markdown
Raw Normal View History

2021-02-14 02:38:20 +00:00
# Suites
Suites provide a mechanism for users to easily combine and name collecitons of
profiles. For good examples, check out the suites defined in the community
2021-02-18 01:31:33 +00:00
[branch](https://github.com/divnix/devos/blob/community/suites/default.nix).
2021-02-14 02:38:20 +00:00
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.
2021-04-19 03:13:12 +00:00
They are defined in `profiles/suites.nix`.
2021-02-14 02:38:20 +00:00
## Definition
```nix
rec {
workstation = [ profiles.develop profiles.graphical users.nixos ];
mobileWS = workstation ++ [ profiles.laptop ];
}
```
## Usage
`hosts/my-laptop.nix`:
```nix
{ suites, ... }:
{
imports = suites.mobileWS;
}
```