Files
2026-02-16 12:27:29 +01:00

24 lines
265 B
Nix

{
pkgs,
lib,
config,
...
}:
with lib;
let
cfg = config.home.env.nix;
in
{
options.home.env.nix = {
enable = mkEnableOption "Zen Editor options";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
nil
nixd
];
};
}