Files
nix-config/modules/hm/shell/misc.nix
2026-05-06 21:13:05 +05:30

17 lines
234 B
Nix

{
flake.modules.homeManager.shell =
{ pkgs, ... }:
{
home.packages = with pkgs; [
systemctl-tui
zip
unzip
pciutils
usbutils
jq
dig
lsof
];
};
}