11 lines
299 B
Nix
11 lines
299 B
Nix
{lib, ...}: {
|
|
programs.noctalia-shell.settings.network = lib.mkForce {
|
|
wifiEnabled = true;
|
|
bluetoothRssiPollingEnabled = true;
|
|
bluetoothRssiPollIntervalMs = 10000;
|
|
wifiDetailsViewMode = "grid";
|
|
bluetoothDetailsViewMode = "grid";
|
|
bluetoothHideUnnamedDevices = false;
|
|
};
|
|
}
|