From 2211a7cf7498ec326fa66cb81e4cdb2c5a07b10c Mon Sep 17 00:00:00 2001 From: Tom Fitzhenry Date: Sat, 15 Jan 2022 06:10:39 +1100 Subject: [PATCH] programs/calls: enable dconf GNOME Calls relies on dconf. Evidence supporting this claim: https://packages.debian.org/sid/gnome-calls depends on dconf-gsettings-backend. Discussed in https://github.com/NixOS/nixpkgs/pull/136537#issuecomment-1009903194 : --- nixos/modules/programs/calls.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/programs/calls.nix b/nixos/modules/programs/calls.nix index 59961625e5d..08a223b408d 100644 --- a/nixos/modules/programs/calls.nix +++ b/nixos/modules/programs/calls.nix @@ -14,6 +14,8 @@ in { }; config = mkIf cfg.enable { + programs.dconf.enable = true; + environment.systemPackages = [ pkgs.calls ];