1
0
Fork 0

improvements

This commit is contained in:
Lukas Wurzinger 2024-12-27 01:20:40 +01:00
parent e347af34f0
commit 86be359908
No known key found for this signature in database
3 changed files with 46 additions and 23 deletions

10
common/networking.nix Normal file
View file

@ -0,0 +1,10 @@
{pkgs, ...}: {
networking = {
nftables.enable = true;
useNetworkd = true;
};
environment.systemPackages = [
pkgs.nixos-firewall-tool
];
}