From 20699b8c656a4e20e7f814ab0b3ad9a022d7aa5c Mon Sep 17 00:00:00 2001 From: Nick Date: Mon, 3 Nov 2025 02:35:42 -0600 Subject: [PATCH] chore: removed broken package --- .../home/cli/utilities/pciUtils/default.nix | 25 +++++-------------- 1 file changed, 6 insertions(+), 19 deletions(-) diff --git a/modules/home/cli/utilities/pciUtils/default.nix b/modules/home/cli/utilities/pciUtils/default.nix index 88e3d04..33cd3d7 100755 --- a/modules/home/cli/utilities/pciUtils/default.nix +++ b/modules/home/cli/utilities/pciUtils/default.nix @@ -1,28 +1,15 @@ { - flake, - osConfig, pkgs, + flake, ... }: -let - inherit (flake.config.machines.devices) ceres; - hostname = osConfig.networking.hostName; - nvTopPackage = { +{ + home.packages = builtins.attrValues { inherit (pkgs) pciutils ; - inherit (pkgs.nvtopPackages) - nvidia - ; + # inherit (flake.inputs.nixpkgs-stable.legacyPackages.${pkgs.system}.nvtopPackages) + # nvidia + # ; }; - hostLogic = if hostname == ceres.name then nvTopPackage else [ ]; -in -{ - home.packages = - builtins.attrValues { - inherit (pkgs) - pciutils - ; - } - ++ hostLogic; }