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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 15b6bd41f66d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 04a71194a807
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 6, 2020

  1. nixos/ibus: fix missing dconf profile

    Fix ibus user preferences not being saved. ibus-daemon was falling back on null configuration due to missing "ibus" dconf profile.
    wakira committed Jan 6, 2020
    Copy the full SHA
    c71339f View commit details
  2. Merge pull request #76683 from wakira/nixos/ibus

    nixos/ibus: fix missing dconf profile
    jtojnar authored Jan 6, 2020
    Copy the full SHA
    04a7119 View commit details
Showing with 2 additions and 0 deletions.
  1. +2 −0 nixos/modules/i18n/input-method/ibus.nix
2 changes: 2 additions & 0 deletions nixos/modules/i18n/input-method/ibus.nix
Original file line number Diff line number Diff line change
@@ -64,6 +64,8 @@ in
# Without dconf enabled it is impossible to use IBus
programs.dconf.enable = true;

programs.dconf.profiles.ibus = "${ibusPackage}/etc/dconf/profile/ibus";

services.dbus.packages = [
ibusAutostart
];