mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-18 22:55:52 +05:30
13 lines
141 B
Nix
13 lines
141 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.dbus = {
|
|
enable = true;
|
|
packages = [ pkgs.dconf ];
|
|
};
|
|
|
|
programs.dconf = {
|
|
enable = true;
|
|
};
|
|
}
|