Files
Nixos/modules/home/common/env/nix.nix
T
2026-02-14 10:15:54 +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
];
};
}