Add bunch more programs / services modularly

This commit is contained in:
Sravan Balaji
2024-03-24 12:14:10 -04:00
parent 711b98a9b0
commit 7f1c5c5baa
21 changed files with 191 additions and 0 deletions

12
system/util/dbus.nix Normal file
View File

@@ -0,0 +1,12 @@
{ config, lib, pkgs, ... }:
{
services.dbus = {
enable = true;
packages = [ pkgs.dconf ];
};
programs.dconf = {
enable = true;
};
}