mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2026-01-02 22:29:52 +01:00
profile/core: add comments
This commit is contained in:
parent
fc2feddfbb
commit
b6424bd12a
2 changed files with 40 additions and 41 deletions
|
|
@ -2,43 +2,43 @@
|
||||||
{
|
{
|
||||||
# Packages
|
# Packages
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
bandwhich
|
bandwhich # bandwidth monitor
|
||||||
bind # dig
|
bind # dns tools (dig, etc)
|
||||||
borgbackup
|
borgbackup # backup tool
|
||||||
cryptsetup
|
cryptsetup # luks volume management
|
||||||
delta
|
delta # git diff viewer
|
||||||
fd # find replacement
|
fd # find replacement in rust
|
||||||
file
|
file # show file type
|
||||||
fzf
|
fzf # fuzzy finder
|
||||||
gettext
|
gettext # localization tools
|
||||||
git
|
git # version control
|
||||||
gptfdisk
|
gptfdisk # disk partitioning tools
|
||||||
htop
|
htop # process monitor
|
||||||
jq
|
jq # json processor
|
||||||
killall
|
killall # kill processes by name
|
||||||
lsof
|
lsof # list open files
|
||||||
mosh
|
mosh # mobile shell
|
||||||
mtr
|
mtr # network diagnostic tool
|
||||||
multipath-tools # kpartx
|
multipath-tools # disk multipathing tools (kpartx)
|
||||||
nmap
|
nmap # network scanner
|
||||||
nmon
|
nmon # performance monitor
|
||||||
ouch # de-/compress
|
ouch # de-/compression tool
|
||||||
pciutils
|
pciutils # lspci
|
||||||
progress
|
progress # show progress of coreutils commands
|
||||||
pv
|
pv # pipe viewer
|
||||||
reptyr
|
reptyr # reparent process to new terminal
|
||||||
rsync
|
rsync # remote file sync
|
||||||
screen
|
screen # terminal multiplexer
|
||||||
sd # sed replacement
|
sd # sed replacement
|
||||||
stress-ng
|
stress-ng # stress testing
|
||||||
tmux
|
tmux # terminal multiplexer
|
||||||
unzip
|
unzip # unzip tools
|
||||||
usbutils
|
usbutils # lsusb
|
||||||
vim
|
vim # text editor
|
||||||
wget
|
wget # file downloader
|
||||||
whois
|
whois # domain lookup
|
||||||
xcp
|
xcp # rust cp replacement
|
||||||
zip
|
zip # zip tools
|
||||||
];
|
];
|
||||||
|
|
||||||
time.timeZone = "Europe/Berlin";
|
time.timeZone = "Europe/Berlin";
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,10 @@ _: {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
unmanaged = [
|
unmanaged = [
|
||||||
"interface-name:br-*" # Ignore docker compose network bridges
|
"interface-name:br-*" # docker compose bridges
|
||||||
"interface-name:docker?" # Ignore docker default bridge
|
"interface-name:docker?" # docker default bridge
|
||||||
"interface-name:veth*" # Ignore docker compose network devices
|
"interface-name:veth*" # docker veth devices
|
||||||
"interface-name:virbr?" # Ignore libvirt default bridge
|
"interface-name:virbr?" # libvirt default bridge
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue