Added nix files
This commit is contained in:
15
modules/networking.nix
Normal file
15
modules/networking.nix
Normal file
@@ -0,0 +1,15 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
networking = {
|
||||
wireless = {
|
||||
enable = true;
|
||||
networks = {
|
||||
"your-SSID" = {
|
||||
psk = "your-wifi-password";
|
||||
};
|
||||
};
|
||||
};
|
||||
dhcp = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user