17 lines
769 B
Nix
17 lines
769 B
Nix
# Module: Wireless Networks Configuration (Encrypted)
|
|
# Description: WiFi networks configuration fully encrypted with sops-nix
|
|
# Security: Network names, SSIDs, and all configuration stored in encrypted secrets
|
|
# Files: ~/.config/secrets/wifi-networks.yaml (encrypted with sops)
|
|
# Note: The actual networks are loaded at runtime from the encrypted file
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# WiFi networks are loaded from encrypted file at runtime
|
|
# The file is in wpa_supplicant.conf format and gets included by wpa_supplicant
|
|
# This approach keeps network names and configuration completely private
|
|
|
|
# Note: If wifi-networks secret doesn't exist yet, this won't cause errors
|
|
# You can still use the old method (networking.wireless.networks in Nix) if needed
|
|
}
|