Migrates common NixOS configuration to dendritic aspect pattern: boot, console, firewall, locale, nix, openssh, programs, security, services, tailscale, users Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
191 B
Nix
10 lines
191 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.common-services = { ... }: {
|
|
services = {
|
|
dbus.implementation = "broker";
|
|
irqbalance.enable = true;
|
|
fstrim.enable = true;
|
|
};
|
|
};
|
|
}
|