From 33c03199a06fc93a3c5e3c74267eedf61b95a361 Mon Sep 17 00:00:00 2001 From: tomoron Date: Thu, 29 Jan 2026 13:21:19 +0100 Subject: [PATCH] glewe110 -> glew_1_100 in nix ld, setup iwd to replace wpa_supplicant (memory leak issue) --- homeConfigs/hosts/laptop.nix | 1 + osConfigs/global/ld.nix | 4 ++-- osConfigs/hosts/laptop.nix | 23 ++++++----------------- 3 files changed, 9 insertions(+), 19 deletions(-) diff --git a/homeConfigs/hosts/laptop.nix b/homeConfigs/hosts/laptop.nix index 420cd15..b74fa58 100644 --- a/homeConfigs/hosts/laptop.nix +++ b/homeConfigs/hosts/laptop.nix @@ -44,6 +44,7 @@ blender wireshark localsend + impala ]; } diff --git a/osConfigs/global/ld.nix b/osConfigs/global/ld.nix index 350b8d9..0715490 100644 --- a/osConfigs/global/ld.nix +++ b/osConfigs/global/ld.nix @@ -6,7 +6,7 @@ # By: tomoron +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2025/12/30 20:37:07 by tomoron #+# #+# # -# Updated: 2025/12/31 01:13:53 by tomoron ### ########.fr # +# Updated: 2026/01/19 12:02:07 by tomoron ### ########.fr # # # # **************************************************************************** # @@ -102,7 +102,7 @@ libvorbis SDL SDL2_image - glew110 + glew_1_10 libidn tbb diff --git a/osConfigs/hosts/laptop.nix b/osConfigs/hosts/laptop.nix index b9ddbc8..ec40545 100644 --- a/osConfigs/hosts/laptop.nix +++ b/osConfigs/hosts/laptop.nix @@ -6,7 +6,7 @@ # By: tomoron +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2025/09/06 00:56:57 by tomoron #+# #+# # -# Updated: 2026/01/13 16:32:20 by tomoron ### ########.fr # +# Updated: 2026/01/29 13:16:59 by tomoron ### ########.fr # # # # **************************************************************************** # @@ -40,7 +40,10 @@ networking.firewall.enable = false; networking.hostName = "patate-douce"; - networking.wireless.enable = true; +# networking.wireless.enable = true; + networking.networkmanager.wifi.backend = "iwd"; + networking.wireless.iwd.enable = true; + networking.wireless.allowAuxiliaryImperativeNetworks = true; networking.networkmanager.enable = false; specialisation.vfio_ready.configuration = { @@ -57,8 +60,6 @@ "/dev/random", "/dev/urandom", "/dev/ptmx", "/dev/kvm", "/dev/rtc","/dev/hpet", - "/dev/input/by-id/[some_mouse_device]-event-mouse", - "/dev/input/by-id/[some_keyboard_device]-event-kbd" ] ''; services.udev.extraRules = '' @@ -87,8 +88,6 @@ mods.touchpad.enable = true; -# programs.gamescope.capSysNice = true; - mods.powerSave = { enable = true; powahCommandAdditions = [ @@ -130,7 +129,7 @@ mods.nvidia.prime = true; - services.usbmuxd.enable = true; #hangs when shutting down + services.usbmuxd.enable = true; #sometimes hangs when shutting down # boot.plymouth = { # enable = true; @@ -142,14 +141,4 @@ services.flatpak.enable = true; - - services.dnsmasq.enable = true; - services.dnsmasq.settings = { - "dhcp-range" = ["192.168.1.150,192.168.1.250"]; - "dhcp-option" = [ - "3,192.168.1.254" - "6,1.1.1.1,8.8.8.8,8.8.4.4" - ]; - "interface" = "enp4s0f4u1"; - }; }