Commit 63b7ebbd authored by nikstur's avatar nikstur
Browse files

nixos/bash: re-introduce enable option

parent cc20f14a
Loading
Loading
Loading
Loading
+97 −103
Original line number Diff line number Diff line
@@ -23,15 +23,11 @@ let
in

{
  imports = [
    (lib.mkRemovedOptionModule [ "programs" "bash" "enable" ] "")
  ];

  options = {

    programs.bash = {

      /*
      enable = lib.mkOption {
        default = true;
        description = ''
@@ -44,7 +40,6 @@ in
        '';
        type = lib.types.bool;
      };
      */

      shellAliases = lib.mkOption {
        default = { };
@@ -129,8 +124,7 @@ in

  };

  config = # lib.mkIf cfg.enable
    {
  config = lib.mkIf cfg.enable {

    programs.bash = {