dotfiles/modules/home/cli/utilities/pciUtils/default.nix

16 lines
232 B
Nix
Raw Normal View History

2025-10-01 19:51:55 -05:00
{
pkgs,
2025-11-03 02:35:42 -06:00
flake,
2025-10-01 19:51:55 -05:00
...
}:
2025-11-03 02:35:42 -06:00
{
home.packages = builtins.attrValues {
2025-10-01 19:51:55 -05:00
inherit (pkgs)
pciutils
;
2025-11-03 02:35:42 -06:00
# inherit (flake.inputs.nixpkgs-stable.legacyPackages.${pkgs.system}.nvtopPackages)
# nvidia
# ;
2025-10-01 19:51:55 -05:00
};
}