nixos-config/modules/nixos/tools/nix-ld/default.nix
2024-04-04 19:37:06 +02:00

20 lines
305 B
Nix

{
options,
config,
lib,
pkgs,
...
}:
with lib;
with lib.wyrdgard;
let
cfg = config.wyrdgard.tools.nix-ld;
in
{
options.wyrdgard.tools.nix-ld = with types; {
enable = mkBoolOpt false "Wether or not to enable nix-ld";
};
config = mkIf cfg.enable { programs.nix-ld.enable = true; };
}