move cli tools to seperate file

This commit is contained in:
Kopatz
2023-12-08 15:26:45 +01:00
parent f750081393
commit 5c882e0311
3 changed files with 24 additions and 17 deletions

20
modules/cli-tools.nix Normal file
View File

@@ -0,0 +1,20 @@
{ config, pkgs, inputs, ... }:
{
environment.systemPackages = with pkgs; [
wget
nixos-option
btop
git
killall
xclip
usbutils
inputs.agenix.packages."x86_64-linux".default
neofetch
pdfgrep
ncdu
glxinfo
vulkan-tools
ffmpeg
nethogs
];
}