configuration.nix/hosts/skipper/services/dbus.nix

8 lines
130 B
Nix
Raw Permalink Normal View History

2023-11-04 16:12:45 +05:30
{ pkgs, ... }: {
2023-04-07 20:47:01 +05:30
services.dbus = {
enable = true;
apparmor = "enabled";
2023-11-04 16:12:45 +05:30
packages = with pkgs; [ gcr gcr_4 ];
2023-04-07 20:47:01 +05:30
};
}