nixos-config/packages/hardwarepkgs.nix

16 lines
159 B
Nix
Raw Normal View History

2024-08-04 19:06:02 +02:00
{ pkgs, pkgs-stable, ... }:
2024-08-03 13:43:50 +02:00
{
environment.systemPackages =
(with pkgs; [
pciutils
aha
2024-08-05 07:22:08 +02:00
lact
2024-08-03 13:43:50 +02:00
])
++
(with pkgs-stable; [
]);
}