nix-config/aspects/common/services.nix
2026-02-12 18:50:38 -03:00

12 lines
211 B
Nix

{ ... }:
{
flake.modules.nixos.common-services =
{ ... }:
{
services = {
dbus.implementation = "broker";
irqbalance.enable = true;
fstrim.enable = true;
};
};
}