nix/option/Distrobox.nix

10 lines
178 B
Nix
Raw Normal View History

{ lib, config, ... }:
let
purpose = config.module.purpose;
in
2024-11-16 04:43:59 +03:00
{
2025-01-04 14:27:49 +03:00
options.module.distrobox.enable = lib.mkEnableOption "the distrobox." // {
default = purpose.work;
};
2024-11-16 04:43:59 +03:00
}