35 lines
856 B
Nix
35 lines
856 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
cfg = config.networking.wireless.iwd;
|
||
|
in {
|
||
|
options.networking.wireless.iwd.enable = mkEnableOption "iwd";
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
assertions = [{
|
||
|
assertion = !config.networking.wireless.enable;
|
||
|
message = ''
|
||
|
Only one wireless daemon is allowed at the time: networking.wireless.enable and networking.wireless.iwd.enable are mutually exclusive.
|
||
|
'';
|
||
|
}];
|
||
|
|
||
|
# for iwctl
|
||
|
environment.systemPackages = [ pkgs.iwd ];
|
||
|
|
||
|
services.dbus.packages = [ pkgs.iwd ];
|
||
|
|
||
|
systemd.services.iwd = {
|
||
|
description = "Wireless daemon";
|
||
|
before = [ "network.target" ];
|
||
|
wants = [ "network.target" ];
|
||
|
wantedBy = [ "multi-user.target" ];
|
||
|
|
||
|
serviceConfig.ExecStart = "${pkgs.iwd}/bin/iwd";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
meta.maintainers = with lib.maintainers; [ mic92 ];
|
||
|
}
|