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