1
1
Fork 0

Compare commits

..

No commits in common. "e12dd38fe527025461e311a8eb3201c3301a3187" and "95572febd5f7c082fa71837c5f0defff1c6b327b" have entirely different histories.

4 changed files with 23 additions and 25 deletions

View File

@ -77,6 +77,7 @@
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
ffmpeg # omnipotent media tool
pv # zfs send progress meter pv # zfs send progress meter
smartmontools # provides smartctl drive inspector smartmontools # provides smartctl drive inspector
]; ];

View File

@ -25,6 +25,7 @@
swapDevices = [ { device = "/swap"; size = 1024; } ]; swapDevices = [ { device = "/swap"; size = 1024; } ];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
ffmpeg
lsof # list open files lsof # list open files
mkpasswd # used for setting SMB passwords, I think? mkpasswd # used for setting SMB passwords, I think?
samba # provides smbpasswd, mostly samba # provides smbpasswd, mostly

View File

@ -74,6 +74,7 @@
bitwarden bitwarden
bitwarden-cli bitwarden-cli
comic-mono comic-mono
ffmpeg
firefox firefox
gnome.gnome-terminal gnome.gnome-terminal
gthumb gthumb
@ -81,7 +82,6 @@
mpv mpv
obsidian obsidian
unzip unzip
vscodium
]; ];
networking.firewall = { networking.firewall = {

View File

@ -63,8 +63,6 @@ in {
cp = "cp -rp"; cp = "cp -rp";
xo = "xdg-open"; xo = "xdg-open";
smv = "rsync -v --remove-source-files"; smv = "rsync -v --remove-source-files";
ffprobe = "ffprobe -hide_banner";
ffmpeg = "ffmpeg -hide_banner";
".." = "cd .."; ".." = "cd ..";
"..." = "cd ../.."; "..." = "cd ../..";
"...." = "cd ../../.."; "...." = "cd ../../..";
@ -103,26 +101,24 @@ in {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
bat # colorized and numbered `less` bat # colorized and numbered `less`
bc # Terminal calculator bc # Terminal calculator
curl # omnipotent URL tool curl
duf # disk-free checker duf
exiftool # media tag tool exiftool
ffmpeg # omnipotent media tool file # File type inspector
file # file type inspector
htmlq # jq for html htmlq # jq for html
jq # jq for json jq # jq for json
nebula # vpn nebula
poppler_utils # provides pdfto* utils, allows lesspipe to read pdfs poppler_utils # provides pdfto* utils, allows lesspipe to read pdfs
psmisc # provides killall psmisc # provides killall
python3 # second-best language for everything python3
ripgrep # fast file searcher rsync
rsync # incremental remote copy sqlite
sqlite # omnipotent database tree # Directory tree view
tree # directory tree view unzip
unzip # .zip archive tool vim
vim # terminal editor viu # in-terminal image viewer
viu # terminal image "viewer" wget
wget # web fetcher zip
zip # .zip archive tool
(writeShellScriptBin "clip" '' (writeShellScriptBin "clip" ''
${xclip}/bin/xclip -sel c < "$1" ${xclip}/bin/xclip -sel c < "$1"
'') '')