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

39 lines
939 B
Nix
Raw Normal View History

2017-04-23 21:12:21 +00:00
{ 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" ];
2018-03-07 18:05:08 +00:00
serviceConfig.ExecStart = "${pkgs.iwd}/libexec/iwd";
2017-04-23 21:12:21 +00:00
};
2018-07-01 09:58:19 +00:00
systemd.tmpfiles.rules = [
"d /var/lib/iwd 0700 root root -"
];
2017-04-23 21:12:21 +00:00
};
meta.maintainers = with lib.maintainers; [ mic92 ];
}