NixFiles/systems/mdesktop/packages.nix

51 lines
624 B
Nix
Raw Normal View History

2023-03-09 08:33:38 +00:00
{ config, pkgs, ... }:
{
# System-wide packages
# I want these available for all users at all times
environment.systemPackages = with pkgs; [
# Xorg packages
xorg.xinit
xorg.xkill
xorg.xprop
xorg.xwininfo
xorg.xrandr
xdotool
xclip
# Processes
killall
appimage-run
# Filesystems
dosfstools
2023-03-11 11:19:27 +00:00
btrfs-progs
2023-03-09 08:33:38 +00:00
ntfs3g
exfatprogs
libimobiledevice
ifuse
# Archives
zip
unrar
unzip
p7zip
# Cli tools
2023-04-09 13:47:03 +01:00
ripgrep
2023-03-09 08:33:38 +00:00
wget
fzf
bat
# XDG
xdg-utils
xdg-user-dirs
# Git
git
2023-07-12 20:43:28 +01:00
# Compiler
gcc
2023-03-09 08:33:38 +00:00
];
}