nixos-config/modules/applications/packages.nix

54 lines
969 B
Nix
Raw Normal View History

2020-04-27 19:48:28 +04:00
{ pkgs, config, lib, inputs, ... }: {
2020-05-20 19:41:56 +04:00
home-manager.users.balsoft.home.packages = with pkgs;
2020-02-17 17:00:59 +04:00
[
# Internet
wget
curl
unrar
] ++ lib.optionals config.deviceSpecific.goodMachine ([
steamcmd
steam
haskellPackages.hoogle
nixfmt
niv
stdman
libqalculate
# Messaging
libnotify
# Audio/Video
vlc
cantata
lxqt.pavucontrol-qt
# Tools
zip
unrar
ksysguard
wl-clipboard
grim
slurp
abiword
gnumeric
gcalcli
papirus-icon-theme
breeze-icons
kde-cli-tools
xdg_utils
nheko
2020-04-27 05:41:54 +04:00
git-crypt
2020-02-17 17:00:59 +04:00
nix-patch
2020-04-27 21:03:22 +04:00
inputs.yt-utilities.defaultPackage.x86_64-linux
2020-02-17 17:00:59 +04:00
] ++ (with pkgs.kdeApplications; [
ark
dolphin
dolphin-plugins
gwenview
kcachegrind
kcolorchooser
kdenlive
kolourpaint
marble
okular
print-manager
]));
}