16 lines
290 B
Nix
16 lines
290 B
Nix
|
{ lib, ...}:
|
||
|
let inherit (lib) mkEnableOption mkOption types;
|
||
|
in {
|
||
|
options = {
|
||
|
systemPackages = mkOption {
|
||
|
type = types.listOf types.package;
|
||
|
};
|
||
|
services = mkOption {
|
||
|
type = types.anything;
|
||
|
};
|
||
|
kernel = mkOption {
|
||
|
type = types.anything;
|
||
|
};
|
||
|
};
|
||
|
}
|