From 6c93b657c5ee039d968f89f7578aaa63fb7e53bc Mon Sep 17 00:00:00 2001 From: Florian RICHER Date: Fri, 7 Jun 2024 19:53:53 +0200 Subject: [PATCH] Add usbutils and pciutils --- modules/system/common.nix | 9 +++++++++ modules/system/desktop/plasma/default.nix | 7 ------- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/modules/system/common.nix b/modules/system/common.nix index 92a26aa..967e327 100644 --- a/modules/system/common.nix +++ b/modules/system/common.nix @@ -26,6 +26,15 @@ environment.systemPackages = with pkgs; [ vim nixd + + # Usefull for automatic informations collect software like KDE + vulkan-tools # For vulkaninfo command + wayland-utils # For wayland-info command + glxinfo + clinfo + aha + usbutils + pciutils ]; services.fwupd.enable = true; diff --git a/modules/system/desktop/plasma/default.nix b/modules/system/desktop/plasma/default.nix index 77c3ec9..261b54f 100644 --- a/modules/system/desktop/plasma/default.nix +++ b/modules/system/desktop/plasma/default.nix @@ -26,13 +26,6 @@ in environment.systemPackages = with pkgs; with kdePackages; [ krfb # Use by kdeconnect for virtualmonitorplugin "krfb-virtualmonitor" discover - - # Usefull for automatic informations collect software like KDE - vulkan-tools # For vulkaninfo command - wayland-utils # For wayland-info command - glxinfo - clinfo - aha ]; }; }