Files
Nomarchy/modules/home/airplane.nix
Bernardo Magri 0ba9633728
Some checks failed
Check / eval (push) Has been cancelled
test: permanent V2 checks for airplane (#104) and fastfetch logo (#122)
Move nomarchy-airplane to pkgs/ so checks can import it. checks.airplane
covers the session state machine, menu/keybind surfaces, and whole-swap
waybar parity (mocked nmcli; live radios stay V3). checks.fastfetch-logo
asserts the baked mark is sextant-based with the module flags locked in.
2026-07-15 11:42:18 +01:00

11 lines
293 B
Nix

# Airplane mode — runtime kill-switch for Wi-Fi + Bluetooth together.
# Implementation: pkgs/nomarchy-airplane. Session state under
# $XDG_RUNTIME_DIR; Waybar plane glyph self-hides when off.
{ config, lib, pkgs, ... }:
{
config = {
home.packages = [ pkgs.nomarchy-airplane ];
};
}