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>
9 lines
155 B
Nix
9 lines
155 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.nixos.common-firewall = { ... }: {
|
|
networking = {
|
|
firewall.enable = true;
|
|
nftables.enable = true;
|
|
};
|
|
};
|
|
}
|