This commit is contained in:
kenji
2025-12-22 09:32:38 -06:00
parent ec424cd6d8
commit 420d4f173c
11 changed files with 168 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{pkgs, ...}: {
hardware = {
bluetooth = {
enable = true;
powerOnBoot = true;
};
networking = {
networkmanager.enable = true;
firewall = {
enable = true;
allowedTCPPorts = [22 80];
allowedUDPPorts = [53];
};
};
};
}