Files
dotfiles/hosts/desktop-pkgs.nix
2025-06-29 17:28:47 +05:30

34 lines
392 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
tmux
bc
gnumake
pciutils
usbutils
ntfs3g
python3
htop
wget
ripgrep
kbd
gcc
vulkan-tools
vulkan-headers
jq
dconf
];
programs = {
git.enable = true;
gnupg = {
agent = {
enableSSHSupport = true;
enable = true;
};
};
};
}