From 2ad2440491e2651cff07a1242f7d03e0952cc3c9 Mon Sep 17 00:00:00 2001 From: macronova Date: Wed, 14 Aug 2024 22:52:07 -0700 Subject: [PATCH] Try iwd for steam deck --- common/users.nix | 4 ++++ linux/protostar/network.nix | 5 ++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/common/users.nix b/common/users.nix index 44542b2..7ea4383 100644 --- a/common/users.nix +++ b/common/users.nix @@ -115,6 +115,10 @@ in { }; plasma = { configFile = { + baloofilerc = { + "Basic Settings".Indexing-Enabled = true; + General."only basic indexing" = true; + }; kded5rc.Module-browserintegrationreminder.autoload = false; kdeglobals.General = { TerminalApplication = "kitty"; diff --git a/linux/protostar/network.nix b/linux/protostar/network.nix index f49ac4b..bc090d1 100644 --- a/linux/protostar/network.nix +++ b/linux/protostar/network.nix @@ -2,7 +2,10 @@ networking = { firewall.trustedInterfaces = [config.services.tailscale.interfaceName]; hostId = "74247225"; - networkmanager.enable = true; + networkmanager = { + enable = true; + wifi.backend = "iwd"; + }; nftables.enable = true; }; services.openssh.enable = true;