dotfiles/lib/shared/home-manager-packages.nix
Oliver Davies a7556575ac Remove tmux
After using it as a daily driver from the last week or so, I'm switching
to Zellij.

https://zellij.dev
2024-09-04 08:00:59 +01:00

82 lines
1.2 KiB
Nix

{
desktop,
inputs,
pkgs,
username,
...
}:
let
php = pkgs.php82;
phpPackages = pkgs.php82Packages;
inherit (pkgs) writeShellApplication;
_timer = writeShellApplication (import ./scripts/_timer.nix);
create-zellij-session = writeShellApplication (
import ./scripts/create-zellij-session.nix { inherit pkgs; }
);
export-video-list = writeShellApplication (
import ./scripts/export-video-list.nix { inherit pkgs username; }
);
notetaker = writeShellApplication (import ./scripts/notetaker.nix);
run = writeShellApplication (import ./scripts/run.nix { inherit pkgs; });
timer = writeShellApplication (import ./scripts/timer.nix);
in
with pkgs;
[
age
awscli2
bitwarden-cli
bottom
cachix
ctop
delta
dog
doppler
entr
fd
file
gcc
gh
git
git-crypt
gnupg
go
htop
inotify-tools
jq
lua
mob
mysql
php
phpPackages.composer
pv
rustywind
simple-http-server
sshs
tldr
tree
tree-sitter
unzip
virtualenv
watchexec
wget
xclip
xcp
xdg-utils
xh
yarn
# Scripts.
create-zellij-session
notetaker
run
t
]
++ pkgs.lib.optionals desktop [
# Scripts.
_timer
export-video-list
timer
]