.dotfiles/modules-clone/home/common/nix-your-shell.nix
2026-04-02 19:25:58 +02:00

13 lines
320 B
Nix

{ lib, config, ... }:
let
moduleName = "nix-your-shell";
in
{
options.swarselmodules.${moduleName} = lib.mkEnableOption "enable ${moduleName} and settings";
config = lib.mkIf config.swarselmodules.${moduleName} {
programs.${moduleName} = {
enable = true;
enableZshIntegration = true;
};
};
}