This commit is contained in:
albert 2024-05-01 11:14:00 +09:00
parent d33cc2d38a
commit 91dab9ced8
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A
5 changed files with 55 additions and 3 deletions

View 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
];
}

View 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
];
}

View file

@ -14,7 +14,7 @@
# Software
./common/software/cli/clean-hm.nix
./common/software/packages
./common/packages
# NixOS Modules
./common/modules/fonts.nix # Font Configs

View file

@ -8,7 +8,7 @@
./common/services/fail2ban.nix
# Software
./common/software/packages/small.nix
./common/packages/small.nix
# NixOS Modules
./common/modules/networking.nix # Initial Networking configs

View file

@ -13,7 +13,7 @@
# Software
./common/software/cli/clean-hm.nix
./common/software/packages/small.nix
./common/packages/small.nix
# NixOS Modules
./common/modules/networking.nix # Initial Networking configs