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; }