33 lines
693 B
Plaintext
33 lines
693 B
Plaintext
// recipes/nipbox/nipbox-variants.kdl
|
|
// USE flags for minimal/desktop modes.
|
|
|
|
variants "nipbox-profiles" {
|
|
|
|
profile "minimal" {
|
|
description "Minimal command-line environment"
|
|
use {
|
|
gui false
|
|
network true
|
|
ipv6 false
|
|
debug false
|
|
}
|
|
packages {
|
|
include "nipbox-shell"
|
|
}
|
|
}
|
|
|
|
profile "desktop" {
|
|
description "Full desktop environment support"
|
|
use {
|
|
gui true
|
|
wayland true
|
|
opengl true
|
|
audio true
|
|
}
|
|
packages {
|
|
include "nipbox-shell"
|
|
include "nexbox/nexbox-desktop"
|
|
}
|
|
}
|
|
}
|