init
This commit is contained in:
16
modules/nixos/wireless-networks.nix
Normal file
16
modules/nixos/wireless-networks.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
# 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
|
||||
}
|
||||
Reference in New Issue
Block a user