Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
base: a0c5dd8a0921
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 82cc6a7510d9
Choose a head ref
  • 2 commits
  • 5 files changed
  • 2 contributors

Commits on Sep 19, 2018

  1. ibus-engines.typing-booster: init at 2.1.1

    This package providesa completion input method for faster typing.
    See https://mike-fabian.github.io/ibus-typing-booster
    
    Detailed instructions how to activate this IBus engine on your desktop
    can be found in the upstream docs: https://mike-fabian.github.io/ibus-typing-booster/documentation.html
    
    A simple VM with the Gnome3 desktop and activated `ibus' looks like
    this:
    
    ```nix
    {
      emojipicker = { pkgs, ... }: {
        services.xserver = {
          enable = true;
          desktopManager.gnome3.enable = true;
          desktopManager.xterm.enable = false;
        };
        users.extraUsers.vm = {
          password = "vm";
          isNormalUser = true;
        };
        i18n.inputMethod.ibus.engines = [
          pkgs.ibus-engines.typing-booster
        ];
        i18n.inputMethod.enabled = "ibus";
        virtualisation.memorySize = 2048;
      };
    }
    ```
    
    Fixes #38721
    Ma27 committed Sep 19, 2018
    Copy the full SHA
    dee2dab View commit details
    Browse the repository at this point in the history
  2. Merge pull request #46779 from Ma27/package-ibus-typing-booster

    ibus-typing-booster: init at 2.1.1
    jtojnar committed Sep 19, 2018
    Copy the full SHA
    82cc6a7 View commit details
    Browse the repository at this point in the history