mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
ef176dcf7e
conversions were done using https://github.com/pennae/nix-doc-munge using (probably) rev f34e145 running nix-doc-munge nixos/**/*.nix nix-doc-munge --import nixos/**/*.nix the tool ensures that only changes that could affect the generated manual *but don't* are committed, other changes require manual review and are discarded.
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.create_ap;
|
|
configFile = pkgs.writeText "create_ap.conf" (generators.toKeyValue { } cfg.settings);
|
|
in {
|
|
options = {
|
|
services.create_ap = {
|
|
enable = mkEnableOption (lib.mdDoc "setup wifi hotspots using create_ap");
|
|
settings = mkOption {
|
|
type = with types; attrsOf (oneOf [ int bool str ]);
|
|
default = {};
|
|
description = lib.mdDoc ''
|
|
Configuration for `create_ap`.
|
|
See [upstream example configuration](https://raw.githubusercontent.com/lakinduakash/linux-wifi-hotspot/master/src/scripts/create_ap.conf)
|
|
for supported values.
|
|
'';
|
|
example = {
|
|
INTERNET_IFACE = "eth0";
|
|
WIFI_IFACE = "wlan0";
|
|
SSID = "My Wifi Hotspot";
|
|
PASSPHRASE = "12345678";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
systemd = {
|
|
services.create_ap = {
|
|
wantedBy = [ "multi-user.target" ];
|
|
description = "Create AP Service";
|
|
after = [ "network.target" ];
|
|
restartTriggers = [ configFile ];
|
|
serviceConfig = {
|
|
ExecStart = "${pkgs.linux-wifi-hotspot}/bin/create_ap --config ${configFile}";
|
|
KillSignal = "SIGINT";
|
|
Restart = "on-failure";
|
|
};
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
meta.maintainers = with lib.maintainers; [ onny ];
|
|
|
|
}
|