Compare commits
4 Commits
95572febd5
...
e12dd38fe5
Author | SHA1 | Date |
---|---|---|
Tim Van Baak | e12dd38fe5 | |
Tim Van Baak | 5ac2fae80e | |
Tim Van Baak | b27f99616a | |
Tim Van Baak | 052159afb7 |
|
@ -77,7 +77,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
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
|
||||||
];
|
];
|
||||||
|
|
|
@ -25,7 +25,6 @@
|
||||||
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
|
||||||
|
|
|
@ -74,7 +74,6 @@
|
||||||
bitwarden
|
bitwarden
|
||||||
bitwarden-cli
|
bitwarden-cli
|
||||||
comic-mono
|
comic-mono
|
||||||
ffmpeg
|
|
||||||
firefox
|
firefox
|
||||||
gnome.gnome-terminal
|
gnome.gnome-terminal
|
||||||
gthumb
|
gthumb
|
||||||
|
@ -82,6 +81,7 @@
|
||||||
mpv
|
mpv
|
||||||
obsidian
|
obsidian
|
||||||
unzip
|
unzip
|
||||||
|
vscodium
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.firewall = {
|
networking.firewall = {
|
||||||
|
|
|
@ -63,6 +63,8 @@ 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 ../../..";
|
||||||
|
@ -99,26 +101,28 @@ in {
|
||||||
|
|
||||||
(mkIf cfg.defaults.programs {
|
(mkIf cfg.defaults.programs {
|
||||||
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
|
curl # omnipotent URL tool
|
||||||
duf
|
duf # disk-free checker
|
||||||
exiftool
|
exiftool # media tag tool
|
||||||
file # File type inspector
|
ffmpeg # omnipotent media tool
|
||||||
htmlq # jq for html
|
file # file type inspector
|
||||||
jq # jq for json
|
htmlq # jq for html
|
||||||
nebula
|
jq # jq for json
|
||||||
poppler_utils # provides pdfto* utils, allows lesspipe to read pdfs
|
nebula # vpn
|
||||||
psmisc # provides killall
|
poppler_utils # provides pdfto* utils, allows lesspipe to read pdfs
|
||||||
python3
|
psmisc # provides killall
|
||||||
rsync
|
python3 # second-best language for everything
|
||||||
sqlite
|
ripgrep # fast file searcher
|
||||||
tree # Directory tree view
|
rsync # incremental remote copy
|
||||||
unzip
|
sqlite # omnipotent database
|
||||||
vim
|
tree # directory tree view
|
||||||
viu # in-terminal image viewer
|
unzip # .zip archive tool
|
||||||
wget
|
vim # terminal editor
|
||||||
zip
|
viu # terminal image "viewer"
|
||||||
|
wget # web fetcher
|
||||||
|
zip # .zip archive tool
|
||||||
(writeShellScriptBin "clip" ''
|
(writeShellScriptBin "clip" ''
|
||||||
${xclip}/bin/xclip -sel c < "$1"
|
${xclip}/bin/xclip -sel c < "$1"
|
||||||
'')
|
'')
|
||||||
|
|
Loading…
Reference in New Issue