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
|
2021-07-27 15:27:13 +04:00
|
|
|
|
|
|
|
exa
|
2021-01-23 23:21:51 +04:00
|
|
|
] ++ lib.optionals config.deviceSpecific.goodMachine [
|
2022-05-30 14:12:15 +04:00
|
|
|
# steamcmd
|
|
|
|
# steam
|
2020-02-17 17:00:59 +04:00
|
|
|
haskellPackages.hoogle
|
|
|
|
nixfmt
|
2022-05-30 14:12:15 +04:00
|
|
|
nixpkgs-fmt
|
2020-02-17 17:00:59 +04:00
|
|
|
stdman
|
|
|
|
libqalculate
|
|
|
|
# Messaging
|
|
|
|
libnotify
|
|
|
|
# Audio/Video
|
2022-04-28 18:49:47 +04:00
|
|
|
mpv
|
2020-02-17 17:00:59 +04:00
|
|
|
vlc
|
2021-03-14 03:20:33 +04:00
|
|
|
pavucontrol
|
2020-02-17 17:00:59 +04:00
|
|
|
# Tools
|
|
|
|
zip
|
2021-08-21 12:07:31 +04:00
|
|
|
plasma-systemmonitor
|
2020-02-17 17:00:59 +04:00
|
|
|
wl-clipboard
|
|
|
|
grim
|
|
|
|
slurp
|
|
|
|
abiword
|
|
|
|
gnumeric
|
|
|
|
gcalcli
|
|
|
|
xdg_utils
|
2020-06-21 22:48:26 +04:00
|
|
|
lambda-launcher
|
|
|
|
nix-patch
|
2021-04-20 19:21:11 +04:00
|
|
|
gopass
|
2020-06-21 13:17:20 +04:00
|
|
|
papirus-icon-theme
|
2021-01-27 18:52:05 +04:00
|
|
|
shellcheck
|
|
|
|
proselint
|
2021-07-07 15:44:12 +04:00
|
|
|
ripgrep
|
2022-05-01 17:00:02 +04:00
|
|
|
bat
|
2022-05-03 16:00:07 +04:00
|
|
|
jless
|
2021-01-23 23:21:51 +04:00
|
|
|
];
|
2020-02-17 17:00:59 +04:00
|
|
|
}
|