Improved documentation/manpages/tldrpages
This commit is contained in:
parent
db3230f980
commit
4cd3d00701
2 changed files with 13 additions and 2 deletions
0
.cache/tldr/.gitignore
vendored
Normal file
0
.cache/tldr/.gitignore
vendored
Normal file
|
|
@ -65,7 +65,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# Misc services
|
# Misc services
|
||||||
services.syncthing.enable = true;
|
|
||||||
services.udisks2.enable = true; # USB Mounting
|
services.udisks2.enable = true; # USB Mounting
|
||||||
# services.printing.enable = true; # CUPS
|
# services.printing.enable = true; # CUPS
|
||||||
|
|
||||||
|
|
@ -80,6 +79,8 @@
|
||||||
zsh.enable = true;
|
zsh.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
virtualisation.docker.enable = true;
|
||||||
|
|
||||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||||
users = {
|
users = {
|
||||||
mutableUsers = true;
|
mutableUsers = true;
|
||||||
|
|
@ -90,6 +91,14 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
documentation = {
|
||||||
|
# Pull in extra documentation/manpages
|
||||||
|
dev.enable = true;
|
||||||
|
|
||||||
|
# Allow whatis, apropos, and man -k to work, but breaks mandb
|
||||||
|
man.generateCaches = true;
|
||||||
|
};
|
||||||
|
|
||||||
# List packages installed in system profile. To search, run:
|
# List packages installed in system profile. To search, run:
|
||||||
# $ nix search wget
|
# $ nix search wget
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
@ -98,6 +107,7 @@
|
||||||
bear # Generate Clang compilation database
|
bear # Generate Clang compilation database
|
||||||
devour # Opens new program on top of terminal
|
devour # Opens new program on top of terminal
|
||||||
distrobox # Easily spin up VMs of other distos
|
distrobox # Easily spin up VMs of other distos
|
||||||
|
docker # Containerization
|
||||||
entr # Hooks for file changes
|
entr # Hooks for file changes
|
||||||
expect # Provides `unbuffer`
|
expect # Provides `unbuffer`
|
||||||
ffmpeg
|
ffmpeg
|
||||||
|
|
@ -107,12 +117,13 @@
|
||||||
imagemagick # Image conversion/processing tool
|
imagemagick # Image conversion/processing tool
|
||||||
jq # Commandline JSON processor
|
jq # Commandline JSON processor
|
||||||
killall # Easy way to kill a process
|
killall # Easy way to kill a process
|
||||||
|
man-pages # Documentation
|
||||||
|
man-pages-posix # Documentation
|
||||||
neofetch # Aesthetic sysinfo
|
neofetch # Aesthetic sysinfo
|
||||||
pass-nodmenu # CLI password store (without dmenu dependency)
|
pass-nodmenu # CLI password store (without dmenu dependency)
|
||||||
pinentry-curses # Terminal-based pinentry program
|
pinentry-curses # Terminal-based pinentry program
|
||||||
python311 # Python
|
python311 # Python
|
||||||
socat # Interact with sockets
|
socat # Interact with sockets
|
||||||
syncthing # Syncing files between machines
|
|
||||||
tldr # Brief info about a command
|
tldr # Brief info about a command
|
||||||
tmux # Terminal multiplexor
|
tmux # Terminal multiplexor
|
||||||
udisks # Good way of dealing with USBs and similar media
|
udisks # Good way of dealing with USBs and similar media
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue