2023-08-07 22:03:49 +00:00
|
|
|
## Hostapd
|
|
|
|
## =======
|
|
|
|
##
|
|
|
|
## Hostapd (host access point daemon) enables a wireless network
|
|
|
|
## interface to act as an access point and authentication server,
|
|
|
|
## providing IEEE 802.11 access point management, and IEEE
|
|
|
|
## 802.1X/WPA/WPA2/EAP Authenticators. In less technical terms,
|
|
|
|
## this service is what you need for your Liminix device to
|
|
|
|
## provide a wireless network that clients can connect to.
|
|
|
|
##
|
|
|
|
## If you have more than one wireless network interface (e.g.
|
|
|
|
## wlan0, wlan1) you can run an instance of hostapd on each of them.
|
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
2023-07-16 16:50:06 +00:00
|
|
|
let
|
|
|
|
inherit (lib) mkOption types;
|
2023-08-05 11:21:18 +00:00
|
|
|
inherit (pkgs) liminix;
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
{
|
2024-08-15 22:00:41 +00:00
|
|
|
imports = [ ../secrets ];
|
2023-07-16 16:50:06 +00:00
|
|
|
options = {
|
|
|
|
system.service.hostapd = mkOption {
|
2023-08-05 11:21:18 +00:00
|
|
|
type = liminix.lib.types.serviceDefn;
|
2023-07-16 16:50:06 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
config = {
|
2024-07-15 18:00:08 +00:00
|
|
|
system.service.hostapd = config.system.callService ./service.nix {
|
2023-08-05 11:21:18 +00:00
|
|
|
interface = mkOption {
|
|
|
|
type = liminix.lib.types.service;
|
|
|
|
};
|
|
|
|
params = mkOption {
|
|
|
|
type = types.attrs;
|
|
|
|
};
|
|
|
|
};
|
2023-07-16 16:50:06 +00:00
|
|
|
};
|
|
|
|
}
|