mirror of
https://github.com/ivabus/nixos
synced 2024-11-10 02:25:18 +03:00
15 lines
350 B
Nix
15 lines
350 B
Nix
{ ... }:
|
|
|
|
{
|
|
networking.wireless.iwd.enable = true;
|
|
networking.wireless.iwd.settings = {
|
|
General = {
|
|
EnableNetworkConfiguration = true;
|
|
};
|
|
};
|
|
|
|
networking.nameservers = [ "1.1.1.1" "1.0.0.1" "8.8.8.8" ];
|
|
|
|
services.timesyncd.enable = true;
|
|
networking.timeServers = [ "ntp1.vniiftri.ru" "0.ru.pool.ntp.org" "0.pool.ntp.org" ];
|
|
} |