Updates
This commit is contained in:
parent
d33cc2d38a
commit
91dab9ced8
5 changed files with 55 additions and 3 deletions
29
nixos/common/packages/default.nix
Normal file
29
nixos/common/packages/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
imports = [ ./small.nix ];
|
||||||
|
|
||||||
|
# List packages installed in system profile
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
nfs-utils # nfs network share tools
|
||||||
|
nixfmt # Formatting nix output
|
||||||
|
sbctl # Secureboot Control
|
||||||
|
wget # WebGet
|
||||||
|
killall # Killall
|
||||||
|
curl # Curl - For web requests
|
||||||
|
ncdu # ncurses style browser for du/dust
|
||||||
|
du-dust # better UI for 'du"
|
||||||
|
home-manager # manage dotfiles
|
||||||
|
iftop # interface top - network usage
|
||||||
|
nload # network load - Network usage graphs
|
||||||
|
iotop # I/O top viewer - disk r/w, etc
|
||||||
|
fx # Pretty print JSON
|
||||||
|
nodejs # Required by fx
|
||||||
|
parted # Disk partitioner / Formatter
|
||||||
|
e2fsprogs # disk format utilities, like mkfs.ext4
|
||||||
|
openssl # Used to generate certs, random strings, etc
|
||||||
|
tree # CLI directory display software
|
||||||
|
nmap # network mapping / discovery software
|
||||||
|
busybox # General linux commands, nslookup, dig, etc
|
||||||
|
busybox # Linux utilities
|
||||||
|
ethtool # Ethernet troubleshooting:with
|
||||||
|
];
|
||||||
|
}
|
23
nixos/common/packages/small.nix
Normal file
23
nixos/common/packages/small.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
# List packages installed in system profile
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
tmux # terminal multiplexer
|
||||||
|
rbw # CLI app for Bitwarden
|
||||||
|
dconf # Required for stylix
|
||||||
|
ripgrep # Better grep
|
||||||
|
git # git!
|
||||||
|
bat # Like cat, but with syntax highlighting
|
||||||
|
eza # like ls, but prettier
|
||||||
|
duf # replacement / prettier UI for df
|
||||||
|
gnupg # GNU Privacy Guard
|
||||||
|
screen # Terminal screen manager
|
||||||
|
btop # like htop, but prettier
|
||||||
|
sshpass # ssh password helper
|
||||||
|
fd # alternative to "Find"
|
||||||
|
cryptsetup # used to open LUKS devices
|
||||||
|
fish # Shell
|
||||||
|
fastfetch # system information viewer
|
||||||
|
zoxide # Souped up "cd"
|
||||||
|
rsync # copy/sync
|
||||||
|
];
|
||||||
|
}
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
# Software
|
# Software
|
||||||
./common/software/cli/clean-hm.nix
|
./common/software/cli/clean-hm.nix
|
||||||
./common/software/packages
|
./common/packages
|
||||||
|
|
||||||
# NixOS Modules
|
# NixOS Modules
|
||||||
./common/modules/fonts.nix # Font Configs
|
./common/modules/fonts.nix # Font Configs
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
./common/services/fail2ban.nix
|
./common/services/fail2ban.nix
|
||||||
|
|
||||||
# Software
|
# Software
|
||||||
./common/software/packages/small.nix
|
./common/packages/small.nix
|
||||||
|
|
||||||
# NixOS Modules
|
# NixOS Modules
|
||||||
./common/modules/networking.nix # Initial Networking configs
|
./common/modules/networking.nix # Initial Networking configs
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
# Software
|
# Software
|
||||||
./common/software/cli/clean-hm.nix
|
./common/software/cli/clean-hm.nix
|
||||||
./common/software/packages/small.nix
|
./common/packages/small.nix
|
||||||
|
|
||||||
# NixOS Modules
|
# NixOS Modules
|
||||||
./common/modules/networking.nix # Initial Networking configs
|
./common/modules/networking.nix # Initial Networking configs
|
||||||
|
|
Loading…
Reference in a new issue