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: 8aaf5de4bd16
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dd050270c78a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 13, 2019

  1. nixos/environment: don't set GTK_DATA_PREFIX or GTK_EXE_PREFIX

    We had these set so gtk2 can discover themes properly, however we failed
    realize that gtk2 already has a patch that makes it search in XDG_DATA_DIRS.
    I don't believe any issue is solved by setting these.
    worldofpeace committed Oct 13, 2019
    Copy the full SHA
    dd05027 View commit details
Showing with 0 additions and 2 deletions.
  1. +0 −2 nixos/modules/programs/environment.nix
2 changes: 0 additions & 2 deletions nixos/modules/programs/environment.nix
Original file line number Diff line number Diff line change
@@ -21,8 +21,6 @@ in
PAGER = mkDefault "less -R";
EDITOR = mkDefault "nano";
XDG_CONFIG_DIRS = [ "/etc/xdg" ]; # needs to be before profile-relative paths to allow changes through environment.etc
GTK_DATA_PREFIX = "${config.system.path}"; # needed for gtk2 apps to find themes
GTK_EXE_PREFIX = "${config.system.path}";
};

environment.profiles = mkAfter