From 21c22fbb4edd3b260a656c5cb3086c4eecdbd2d7 Mon Sep 17 00:00:00 2001 From: nouredeen Date: Mon, 15 Jun 2026 09:35:48 +0000 Subject: [PATCH] Update configuration.nix --- configuration.nix | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/configuration.nix b/configuration.nix index 5311985..a9e810c 100644 --- a/configuration.nix +++ b/configuration.nix @@ -8,14 +8,9 @@ networking.hostName = "nixos"; networking.networkmanager.enable = true; - # Note: The MT7902 WiFi driver is notorious. Your existing fix_my_wifi.sh script - # and blacklisting strategy can still work if you run it manually, but eventually, - # building it as an out-of-tree kernel module in Nix is the "proper" way. - time.timeZone = "Asia/Amman"; i18n.defaultLocale = "en_US.UTF-8"; - # Hardware: Intel Microcode & Nvidia PRIME hardware.cpu.intel.updateMicrocode = true; hardware.opengl = { enable = true; @@ -26,7 +21,7 @@ hardware.nvidia = { modesetting.enable = true; powerManagement.enable = false; - open = true; # You were using nvidia-open-dkms + open = true; nvidiaSettings = true; prime = { intelBusId = "PCI:0:2:0"; # Verify with `lspci | grep VGA` @@ -35,7 +30,7 @@ }; # System Services - services.printing.enable = true; # cups + services.printing.enable = true; services.blueman.enable = true; hardware.bluetooth.enable = true; services.coolercontrol.enable = true; @@ -48,7 +43,6 @@ wayland.enable = true; }; - # Enable Hyprland at the system level to pull in XDG portals automatically programs.hyprland.enable = true; programs.zsh.enable = true;