summaryrefslogtreecommitdiffstats
path: root/lass/3modules/autowifi.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lass/3modules/autowifi.nix')
-rw-r--r--lass/3modules/autowifi.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/lass/3modules/autowifi.nix b/lass/3modules/autowifi.nix
new file mode 100644
index 00000000..9aa1a2d2
--- /dev/null
+++ b/lass/3modules/autowifi.nix
@@ -0,0 +1,38 @@
+{ config, lib, pkgs, ... }:
+with import <stockholm/lib>;
+let
+
+ cfg = config.lass.autowifi;
+
+in {
+ options.lass.autowifi = {
+ enable = mkEnableOption "automatic wifi connector";
+ knownWifisFile = mkOption {
+ type = types.str;
+ default = "/etc/wifis";
+ };
+ enablePrisonBreak = mkOption {
+ type = types.bool;
+ default = false;
+ };
+ };
+
+ config = lib.mkIf cfg.enable {
+ systemd.services.autowifi = {
+ description = "Automatic wifi connector";
+ wantedBy = [ "multi-user.target" ];
+ path = [ pkgs.networkmanager ];
+ serviceConfig = {
+ Type = "simple";
+ Restart = "always";
+ RestartSec = "10s";
+ ExecStart = "${autowifi}/bin/autowifi";
+ };
+ };
+
+ networking.networkmanager.dispatcherScripts = mkIf cfg.enablePrisonBreak [
+ { source = "${pkgs.callPackage <stockholm/makefu/5pkgs/prison-break}/bin/prison-break"; }
+ ];
+ };
+}
+