From cd3199573c604653f9ea940e03fb5a7739abf37c Mon Sep 17 00:00:00 2001 From: Himadri Bhattacharjee <107522312+lavafroth@users.noreply.github.com> Date: Fri, 6 Jun 2025 08:52:26 +0530 Subject: [PATCH] fix: remove fwupd, can't detect my firmware --- hosts/default/configuration.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index b8562c1..4cb2bdb 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -40,8 +40,6 @@ networkmanager.enable = true; }; - services.fwupd.enable = true; - # fuck this shit chock full of memory leaks system.nssModules = pkgs.lib.mkForce [ ]; # services.nscd.enableNsncd = false; @@ -51,6 +49,7 @@ time.timeZone = "Asia/Kolkata"; powerManagement.powertop.enable = true; + services.upower.enable = pkgs.lib.mkForce false; # Select internationalisation properties. i18n.defaultLocale = "en_US.UTF-8"; @@ -150,7 +149,6 @@ nixpkgs.config.allowUnfree = true; environment.variables = { - # Set the path for pkg-config. Mostly for CFFI projects. PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig"; EDITOR = "${pkgs.helix}/bin/hx"; QT_LOGGING_RULES = "kwin_*.debug=true";