-
-
Notifications
You must be signed in to change notification settings - Fork 19.7k
Install gsettings schemas #54083
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Install gsettings schemas #54083
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -128,6 +128,7 @@ in { | |
| services.udev.packages = [ pkgs.gnome3.gnome-settings-daemon ]; | ||
| systemd.packages = [ pkgs.gnome3.vino ]; | ||
| services.flatpak.extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; | ||
| programs.dconf.enable = true; | ||
|
|
||
| # If gnome3 is installed, build vim for gtk3 too. | ||
| nixpkgs.config.vim.gui = "gtk3"; | ||
|
|
@@ -163,12 +164,12 @@ in { | |
|
|
||
| services.xserver.updateDbusEnvironment = true; | ||
|
|
||
| environment.variables.GIO_EXTRA_MODULES = [ "${lib.getLib pkgs.gnome3.dconf}/lib/gio/modules" | ||
| "${pkgs.gnome3.glib-networking.out}/lib/gio/modules" | ||
| environment.variables.GIO_EXTRA_MODULES = [ "${pkgs.gnome3.glib-networking.out}/lib/gio/modules" | ||
| "${pkgs.gnome3.gvfs}/lib/gio/modules" ]; | ||
| environment.systemPackages = pkgs.gnome3.corePackages ++ cfg.sessionPath | ||
| ++ (removePackagesByName pkgs.gnome3.optionalPackages config.environment.gnome3.excludePackages) ++ [ | ||
| pkgs.xdg-user-dirs # Update user dirs as described in http://freedesktop.org/wiki/Software/xdg-user-dirs/ | ||
| pkgs.gnome3.mutter # Give eg. gnome-control-center access to schema | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IIRC, mutter was required by g-c-c for keyboard panel, not schemas.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It fetches (and sets) the keybindings from mutters schema. I can make the comment explicit that it's the keyboard panel functionality that require them.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh, right. The keybindings XML files point to schemas. I think I have somewhere g-c-c patch that adds |
||
| ]; | ||
|
|
||
| # Use the correct gnome3 packageSet | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.