added katana

This commit is contained in:
specCon18 2023-07-21 02:12:27 -04:00
parent ba55e5571c
commit e34907e038
6 changed files with 134 additions and 49 deletions

13
hosts/katana/networkd.nix Normal file
View file

@ -0,0 +1,13 @@
{ modulesPath, config, pkgs, lib, self, ... }:
{
networking = {
hostName = "katana"; # Define your hostname.
networkmanager.enable = true; #Enable Network Manager
firewall = {
allowedTCPPorts = [];
allowedUDPPorts = [];
};
};
}