Merge remote-tracking branch 'origin/main' into darwin

This commit is contained in:
greg-compass
2022-09-06 17:01:56 -05:00
58 changed files with 1366 additions and 208 deletions
+11 -3
View File
@@ -1,22 +1,30 @@
{ pkgs, agenix, ... }:
{
let
myPackages = pypackages: with pypackages; [
pkgs.xonsh-direnv
];
myPython = pkgs.python3.withPackages myPackages;
in {
# Base packages that need to be in all my hosts
environment.systemPackages = with pkgs; [
agenix.defaultPackage."${system}"
bitwarden-cli
diffutils
git
gnupatch
findutils
hms # My own home manager switcher
home-manager
htop
python3
myPython
pwgen
tmux
transcrypt
unzip
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
];
}