12 lines
211 B
Nix
12 lines
211 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.common-services =
|
|
{ ... }:
|
|
{
|
|
services = {
|
|
dbus.implementation = "broker";
|
|
irqbalance.enable = true;
|
|
fstrim.enable = true;
|
|
};
|
|
};
|
|
}
|