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, pkgs,
flake,
... ...
}: }:
let {
inherit (flake.config.machines.devices) ceres; home.packages = builtins.attrValues {
hostname = osConfig.networking.hostName;
nvTopPackage = {
inherit (pkgs) inherit (pkgs)
pciutils pciutils
; ;
inherit (pkgs.nvtopPackages) # inherit (flake.inputs.nixpkgs-stable.legacyPackages.${pkgs.system}.nvtopPackages)
nvidia # nvidia
; # ;
}; };
hostLogic = if hostname == ceres.name then nvTopPackage else [ ];
in
{
home.packages =
builtins.attrValues {
inherit (pkgs)
pciutils
;
}
++ hostLogic;
} }