mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-19 03:33:30 -05:00
23 lines
446 B
Nix
23 lines
446 B
Nix
{pkgs, lib, ...}: {
|
|
home = {
|
|
packages = with pkgs; [
|
|
unixtools.xxd
|
|
p7zip
|
|
dig
|
|
bat
|
|
usbutils
|
|
tree
|
|
sops
|
|
fzf
|
|
jq
|
|
unzip
|
|
];
|
|
sessionVariables = {
|
|
BAT_THEME = "Dracula";
|
|
SSH_ASKPASS_REQUIRE = "prefer";
|
|
};
|
|
sessionPath = [
|
|
"$HOME/.local/bin"
|
|
];
|
|
};
|
|
}
|