Some checks failed
Check / eval (push) Has been cancelled
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.
11 lines
293 B
Nix
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 ];
|
|
};
|
|
}
|