48 current 2024-02-29 22:41:24 24.05.20240228.9099616 6.6.18 *

This commit is contained in:
zackartz 2024-02-29 22:41:27 -05:00
parent 9e22c420de
commit 548ffbb3b3
2 changed files with 93 additions and 1 deletions

View file

@ -13,6 +13,7 @@
inputs.nixvim.homeManagerModules.nixvim inputs.nixvim.homeManagerModules.nixvim
../rice/hyprland ../rice/hyprland
../rice/gtk.nix ../rice/gtk.nix
../shell
]; ];
nixpkgs = { nixpkgs = {

View file

@ -1,3 +1,94 @@
{ {pkgs, ...}: let
texlive = pkgs.texlive.combine {
inherit
(pkgs.texlive)
scheme-small
noto
mweights
cm-super
cmbright
fontaxes
beamer
;
};
pandoc-watch = pkgs.writeScriptBin "wpandoc" ''
#!/bin/sh
while inotifywait -e close_write $1; do pandoc $@; done
'';
in {
imports = [./zsh/default.nix]; imports = [./zsh/default.nix];
home.packages = with pkgs; [
texlive
pandoc-watch
pandoc
# Tbh should be preinstalled
gnumake
# Runs programs without installing them
comma
# grep replacement
ripgrep
# ping, but with cool graph
gping
# dns client
dogdns
# neofetch but for git repos
onefetch
# neofetch but for cpu's
cpufetch
# download from yt and other websites
yt-dlp
# man pages for tiktok attention span mfs
tealdeer
# markdown previewer
glow
# profiling tool
hyperfine
imagemagick
ffmpeg-full
# preview images in terminal
catimg
# networking stuff
nmap
wget
# faster find
fd
# http request thingy
xh
# generate regex
grex
# json thingy
jq
# syncthnig for acoustic people
rsync
figlet
# Generate qr codes
qrencode
# script kidde stuff
hcxdumptool
hashcat
unzip
# tshark
# termshark
];
} }