1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00
nixpkgs/nixos/modules/services/networking/iwd.nix
Vladyslav Mykhailichenko d73fd69952 iwd: 0.4 -> 0.7
2018-08-25 15:26:52 +03:00

32 lines
726 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.packages = [ pkgs.iwd ];
systemd.tmpfiles.rules = [
"d /var/lib/iwd 0700 root root -"
];
};
meta.maintainers = with lib.maintainers; [ mic92 ];
}