12 lines
332 B
Nix
12 lines
332 B
Nix
# Glib Schemas Fix
|
|
# https://github.com/thomX75/nixos-modules
|
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [ gsettings-desktop-schemas ];
|
|
|
|
environment.variables = {
|
|
GSETTINGS_SCHEMA_DIR="${pkgs.gsettings-desktop-schemas}/share/gsettings-schemas/${pkgs.gsettings-desktop-schemas.name}/glib-2.0/schemas";
|
|
};
|
|
} |