chore: removed broken package

This commit is contained in:
Nick 2025-11-03 02:35:42 -06:00
parent da1e1166a1
commit 20699b8c65

View file

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