nix-config/modules/home-manager/phpactor/default.nix
2025-07-17 21:47:19 +01:00

17 lines
287 B
Nix

{ config, lib, ... }:
with lib;
let
cfg = config.features.coding.phpactor;
in
{
options.features.coding.phpactor.enable = mkEnableOption "Enable phpactor";
config = mkIf cfg.enable {
xdg.configFile.phpactor = {
source = ./config;
recursive = true;
};
};
}