nixconfigs/nixos/packages.nix

87 lines
1.3 KiB
Nix
Raw Normal View History

2018-09-25 23:09:53 +02:00
{ pkgs, config, ... }:
{
# List packages installed in system profile.
environment.systemPackages = with pkgs; [
wget
vim
vimPlugins.vim-nix
vimPlugins.pathogen
2018-09-25 23:09:53 +02:00
tmux
htop
zsh
btrfs-progs
git
python3
2022-06-02 02:03:29 +02:00
man-pages
2018-09-25 23:09:53 +02:00
dnsutils
netcat
ntfs3g
file
multipath-tools
strace
ltrace
valgrind
2018-09-26 02:22:53 +02:00
testdisk
rsync
2018-09-26 15:10:16 +02:00
pv
2022-06-02 02:03:29 +02:00
exfat
2018-09-26 15:10:16 +02:00
iotop
2018-09-26 15:31:10 +02:00
cifs-utils
2018-10-03 23:47:31 +02:00
dstat
2018-11-18 15:12:30 +01:00
lsof
2019-03-07 21:28:47 +01:00
macchanger
2019-05-06 12:51:56 +02:00
# for debugging WLAN failures:
ethtool
trace-cmd
2018-09-26 02:22:53 +02:00
# NetworkManager stuff
networkmanager-openconnect
networkmanager-vpnc
networkmanager-openvpn
2021-06-03 13:28:46 +02:00
plasma5Packages.kdeGear.akonadi-mime # for KOrganizer
]
2021-06-03 13:28:46 +02:00
++ (with plasma5Packages; with kdeGear; [
#akonadi
#akonadi-calendar
#akonadi-contacts
#akonadi-import-wizard
#akonadi-mime
#akonadi-notes
#akonadi-search
#akonadiconsole
#akregator
#kaddressbook
#kalarm
#kalarmcal
#kcalutils
#kcontacts
#kdav
#kdepim-addons
#kdepim-runtime
#kidentitymanagement
#kldap
#kmail
#kmailtransport
#kmbox
#kmime
#kontact
#kontactinterface
#korganizer
#kpimtextedit
#libkdepim
#libksieve
#mailcommon
#messagelib
#pimcommon
#pim-sieve-editor
2020-04-05 19:00:56 +02:00
# for some Flatpak packkages
accountsservice
]);
2018-09-25 23:09:53 +02:00
}