mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-05-07 02:16:33 +05:30
17 lines
234 B
Nix
17 lines
234 B
Nix
{
|
|
flake.modules.homeManager.shell =
|
|
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
systemctl-tui
|
|
zip
|
|
unzip
|
|
pciutils
|
|
usbutils
|
|
jq
|
|
dig
|
|
lsof
|
|
];
|
|
};
|
|
}
|