docs: Improve iwd, vaultwarden, dyndns, disk-encryption and installer documentation

This commit is contained in:
Qubasa
2024-08-24 13:10:22 +02:00
parent 3fe8407c3b
commit 5df58aaf20
6 changed files with 237 additions and 181 deletions

View File

@@ -31,7 +31,7 @@ in
{
options = {
ssid = lib.mkOption {
type = lib.types.strMatching "^[a-zA-Z0-9._-]+$";
type = lib.types.str;
default = name;
description = "The name of the wifi network";
};
@@ -67,6 +67,9 @@ in
# disable wpa supplicant
networking.wireless.enable = false;
# Set the network manager backend to iwd
networking.networkmanager.wifi.backend = "iwd";
# Use iwd instead of wpa_supplicant. It has a user friendly CLI
networking.wireless.iwd = {
enable = true;