Added nix files

This commit is contained in:
2025-03-20 15:26:29 +00:00
parent bf0779ae97
commit 5965d43eff
9 changed files with 234 additions and 0 deletions

15
modules/networking.nix Normal file
View File

@@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
networking = {
wireless = {
enable = true;
networks = {
"your-SSID" = {
psk = "your-wifi-password";
};
};
};
dhcp = true;
};
}