Files
garandos/modules/home/noctalia/settings/network.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;
};
}