26 lines
332 B
Nix
26 lines
332 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Base packages that need to be in all my hosts
|
|
environment.systemPackages = with pkgs; [
|
|
agenix
|
|
android-file-transfer
|
|
bitwarden-cli
|
|
diffutils
|
|
git
|
|
gh
|
|
gnupatch
|
|
gregpy
|
|
findutils
|
|
hms # My own home manager switcher
|
|
home-manager
|
|
htop
|
|
killall
|
|
nano
|
|
pwgen
|
|
transcrypt
|
|
unzip
|
|
wget
|
|
];
|
|
}
|