Files
Nixos/modules/home/common/shell.nix
T
2026-02-16 12:27:29 +01:00

23 lines
261 B
Nix

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