2026-06-04 13:57:44 +00:00
|
|
|
# Portable NixOS hosts (X1, MBP-Asahi). Imported from the host table in
|
|
|
|
|
# flake.nix. Shared graphical-workstation settings live in ./workstation.nix;
|
|
|
|
|
# the only laptop-specific bit is the Wi-Fi backend. Mobile home-manager
|
|
|
|
|
# components (battery block, brightness keys) are gated by the `portable` flag
|
|
|
|
|
# threaded through mkHost -- see lyrathorpe/home/sway.nix.
|
2026-06-04 13:34:44 +00:00
|
|
|
{ ... }:
|
|
|
|
|
{
|
2026-06-04 13:57:44 +00:00
|
|
|
imports = [ ./workstation.nix ];
|
2026-06-04 13:34:44 +00:00
|
|
|
|
|
|
|
|
# Wi-Fi via iwd with its built-in DHCP/network configuration.
|
|
|
|
|
networking.wireless.iwd = {
|
|
|
|
|
enable = true;
|
|
|
|
|
settings.General.EnableNetworkConfiguration = true;
|
|
|
|
|
};
|
|
|
|
|
}
|