53 lines
970 B
Nix
Raw Normal View History

2020-04-27 18:48:28 +03:00
{ pkgs, config, lib, inputs, ... }: {
2020-05-20 18:41:56 +03:00
home-manager.users.balsoft.home.packages = with pkgs;
2020-02-17 16:00:59 +03: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
breeze-icons
kde-cli-tools
xdg_utils
2020-04-27 04:41:54 +03:00
git-crypt
2020-04-27 20:03:22 +03:00
inputs.yt-utilities.defaultPackage.x86_64-linux
2020-06-21 21:48:26 +03:00
lambda-launcher
nix-patch
2020-05-25 15:30:06 +03:00
pass-wayland
2020-06-21 12:17:20 +03:00
papirus-icon-theme
2020-02-17 16:00:59 +03:00
] ++ (with pkgs.kdeApplications; [
ark
dolphin
dolphin-plugins
gwenview
kcachegrind
kcolorchooser
kolourpaint
okular
print-manager
]));
}