nixpkgs/nixos/modules/services/networking/iwd.nix

63 lines
1.4 KiB
Nix
Raw Normal View History

2017-04-23 21:12:21 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.networking.wireless.iwd;
2021-05-19 23:59:34 +00:00
ini = pkgs.formats.ini { };
configFile = ini.generate "main.conf" cfg.settings;
2017-04-23 21:12:21 +00:00
in {
2021-05-19 23:59:34 +00:00
options.networking.wireless.iwd = {
enable = mkEnableOption "iwd";
settings = mkOption {
type = ini.type;
default = { };
example = {
Settings.AutoConnect = true;
Network = {
EnableIPv6 = true;
RoutePriorityOffset = 300;
};
};
description = ''
Options passed to iwd.
See <link xlink:href="https://iwd.wiki.kernel.org/networkconfigurationsettings">here</link> for supported options.
'';
};
};
2017-04-23 21:12:21 +00:00
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.
'';
}];
2021-05-19 23:59:34 +00:00
environment.etc."iwd/main.conf".source = configFile;
2017-04-23 21:12:21 +00:00
# for iwctl
environment.systemPackages = [ pkgs.iwd ];
services.dbus.packages = [ pkgs.iwd ];
2018-08-25 12:26:52 +00:00
systemd.packages = [ pkgs.iwd ];
2018-07-01 09:58:19 +00:00
systemd.network.links."80-iwd" = {
matchConfig.Type = "wlan";
linkConfig.NamePolicy = "keep kernel";
};
2021-05-19 23:59:34 +00:00
systemd.services.iwd = {
wantedBy = [ "multi-user.target" ];
restartTriggers = [ configFile ];
};
2017-04-23 21:12:21 +00:00
};
meta.maintainers = with lib.maintainers; [ mic92 dtzWill ];
2017-04-23 21:12:21 +00:00
}