47 lines
760 B
Nix
47 lines
760 B
Nix
{ pkgs, config, lib, inputs, ... }: {
|
|
home-manager.users.balsoft.home.packages = with pkgs;
|
|
[
|
|
# Internet
|
|
wget
|
|
curl
|
|
|
|
exa
|
|
] ++ lib.optionals config.deviceSpecific.goodMachine [
|
|
# steamcmd
|
|
# steam
|
|
haskellPackages.hoogle
|
|
nixfmt
|
|
nixpkgs-fmt
|
|
stdman
|
|
libqalculate
|
|
# Messaging
|
|
libnotify
|
|
# Audio/Video
|
|
mpv
|
|
vlc
|
|
pavucontrol
|
|
# Tools
|
|
zip
|
|
plasma-systemmonitor
|
|
wl-clipboard
|
|
grim
|
|
slurp
|
|
abiword
|
|
gnumeric
|
|
gcalcli
|
|
xdg_utils
|
|
lambda-launcher
|
|
nix-patch
|
|
gopass
|
|
papirus-icon-theme
|
|
shellcheck
|
|
proselint
|
|
ripgrep
|
|
bat
|
|
jless
|
|
|
|
pandoc
|
|
codebraid
|
|
];
|
|
}
|