16 lines
310 B
Nix
Executable File
16 lines
310 B
Nix
Executable File
{
|
|
lib,
|
|
namespace,
|
|
...
|
|
}:
|
|
{
|
|
options.${namespace}.programs.nwg-panel = {
|
|
enable = lib.mkEnableOption "nwg-panel";
|
|
|
|
defaultApps = lib.mkOption {
|
|
type = lib.types.submodule (import ../common/default-apps.nix);
|
|
description = "Default applications used across the system.";
|
|
};
|
|
};
|
|
}
|