1
1
Fork 0

Compare commits

...

4 Commits

Author SHA1 Message Date
Tim Van Baak e12dd38fe5 imperium: add vscodium 2024-08-07 19:27:37 -07:00
Tim Van Baak 5ac2fae80e beatific: add ripgrep 2024-08-07 19:25:33 -07:00
Tim Van Baak b27f99616a beatific: add ffmpeg 2024-08-07 19:25:16 -07:00
Tim Van Baak 052159afb7 beatific: comments 2024-08-07 19:24:03 -07:00
4 changed files with 25 additions and 23 deletions

View File

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

View File

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

View File

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

View File

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