dotfiles/lib/shared/home-manager-packages.nix

85 lines
1.3 KiB
Nix
Raw Normal View History

{
desktop,
inputs,
pkgs,
username,
...
}:
2024-03-30 20:00:37 +00:00
let
php = pkgs.php82;
phpPackages = pkgs.php82Packages;
2024-06-15 11:17:07 +00:00
inherit (pkgs) writeShellApplication;
2024-06-15 11:17:07 +00:00
_timer = writeShellApplication (import ./scripts/_timer.nix);
create-zellij-session = writeShellApplication (
import ./scripts/create-zellij-session.nix { inherit pkgs; }
);
deliver = writeShellApplication (import ./scripts/deliver.nix { inherit pkgs; });
export-video-list = writeShellApplication (
import ./scripts/export-video-list.nix { inherit pkgs username; }
);
run = writeShellApplication (import ./scripts/run.nix { inherit pkgs; });
t = writeShellApplication (import ./scripts/t.nix { inherit pkgs; });
timer = writeShellApplication (import ./scripts/timer.nix);
in
with pkgs;
[
age
2024-03-30 22:22:39 +00:00
awscli2
2024-02-27 18:33:03 +00:00
bitwarden-cli
2023-03-22 22:56:56 +00:00
bottom
2024-03-01 21:30:54 +00:00
cachix
2023-03-22 22:56:56 +00:00
ctop
delta
2023-06-28 19:49:08 +00:00
dog
2023-03-22 22:56:56 +00:00
doppler
entr
2023-06-28 19:49:08 +00:00
fd
2023-03-22 22:56:56 +00:00
file
gcc
gh
git
git-crypt
gnupg
2023-09-22 06:45:29 +00:00
go
2023-03-22 22:56:56 +00:00
htop
2023-06-28 19:49:08 +00:00
inotify-tools
2023-03-22 22:56:56 +00:00
jq
lua
2024-11-03 19:28:59 +00:00
mariadb
mob
2024-03-30 20:00:37 +00:00
php
phpPackages.composer
2023-03-22 22:56:56 +00:00
pv
2024-01-14 09:11:03 +00:00
rustywind
simple-http-server
sshs
2023-03-22 22:56:56 +00:00
tldr
tree
2023-06-28 19:49:08 +00:00
tree-sitter
2023-03-22 22:56:56 +00:00
unzip
virtualenv
2024-08-28 11:58:02 +00:00
watchexec
2023-03-22 22:56:56 +00:00
wget
xclip
2023-03-22 22:56:56 +00:00
xcp
xdg-utils
2023-06-28 19:49:08 +00:00
xh
2023-03-22 22:56:56 +00:00
yarn
2024-11-12 00:18:38 +00:00
unstable.devenv
# Scripts.
create-zellij-session
deliver
run
t
]
++ pkgs.lib.optionals desktop [
# Scripts.
_timer
export-video-list
timer
2023-03-22 22:56:56 +00:00
]