5 lines
100 B
Nix
5 lines
100 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.dbus.packages = with pkgs; [ dconf ];
|
|
programs.dconf.enable = true;
|
|
}
|