summary refs log tree commit diff stats
path: root/system/settings/hardware/iwd.nix
blob: 560c6694b1ea14eb0b8ffdc97c62dbd6e4db807c (plain)
1
2
3
4
5
6
7
8
9
{ config, pkgs, ... }:

{
  networking.wireless.iwd = {
    enable = true;
  };

  services.connman.wifi.backend = "iwd";
}