Work is now working

This commit is contained in:
greg-compass
2022-09-06 11:41:09 -05:00
parent 5234eaefb4
commit b3c3b00450
12 changed files with 82 additions and 5 deletions
+22
View File
@@ -0,0 +1,22 @@
{ pkgs, agenix, ... }:
{
# Base packages that need to be in all my hosts
environment.systemPackages = with pkgs; [
agenix.defaultPackage."${system}"
diffutils
git
gnupatch
findutils
home-manager
htop
python3
pwgen
tmux
transcrypt
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget
xonsh
yamllint # Used in vim
];
}