nixos-config/homes/palo/packages/packages.nix
2024-11-15 16:30:59 +07:00

70 lines
1.3 KiB
Nix

{
config,
lib,
pkgs,
...
}:
with pkgs;
with lib;
{
config = mkIf config.gui.enable {
# ¯\_(ツ)_/¯
home.packages = [
nixos-shell
# bluetooth gui
blueberry
mosquitto
(pkgs.writers.writeBashBin "mqtt-tail" ''
${pkgs.mosquitto}/bin/mosquitto_sub -v \
-h pepe.private \
-u homeassistant \
-P password \
-t "#"
'')
tor-browser-bundle-bin
#(tor-browser-bundle-bin.overrideAttrs (old: rec {
# version = "11.0.1";
# name = "tor-browser-bundle-${version}";
# src = pkgs.fetchurl {
# url = "https://dist.torproject.org/torbrowser/11.0.1/tor-browser-linux64-11.0.1_en-US.tar.xz";
# sha256 = "1ah69jmfgik063f9gkvyv9d4k706pqihmzc4k7cc95zyd17v8wrs";
# };
#}))
scraper
bitwarden
rbw
nginx-config-formatter
yt-dlp
OSCAR
# office
pdfarranger
# sewing
#seamly2d
#valentina
# xorg/x11 macros
# ---------------
# wait 2 secs, than record mouse movements (use Ctrl-C to stop recording)
# > cnee --record --mouse -o ./mouse-events.xnl --time 2
# replay 3 times the mouse movements (zsh only)
# > repeat 3 cnee --time 2 --replay -f ./mouse-events.xnl
xnee
];
};
}