8 lines
172 B
Nix
8 lines
172 B
Nix
{ lib, config, ... }:
|
|
let
|
|
purpose = config.module.purpose;
|
|
in
|
|
{
|
|
options.module.distrobox.enable = lib.mkEnableOption "the distrobox." // { default = purpose.work; };
|
|
}
|