1
0
mirror of https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git synced 2025-04-03 04:31:22 +02:00

base: use dbus-broker as dbus implementation

This commit is contained in:
h7x4 2025-03-15 01:19:33 +01:00
parent ee8965e18c
commit 7b5e114944
No known key found for this signature in database
GPG Key ID: 9F2F7D8250F35146
2 changed files with 10 additions and 0 deletions

View File

@ -10,6 +10,7 @@
./services/acme.nix
./services/auto-upgrade.nix
./services/dbus.nix
./services/irqbalance.nix
./services/logrotate.nix
./services/nginx.nix
@ -48,6 +49,8 @@
programs.zsh.enable = true;
security.lockKernelModules = true;
security.protectKernelImage = true;
security.sudo.execWheelOnly = true;
security.sudo.extraConfig = ''
Defaults lecture = never

7
base/services/dbus.nix Normal file
View File

@ -0,0 +1,7 @@
{ ... }:
{
services.dbus = {
enable = true;
implementation = "broker";
};
}