Files
nixos/modules/automatic/programs.nix
T

28 lines
546 B
Nix
Raw Normal View History

2022-04-21 04:49:44 +00:00
{ pkgs, agenix, ... }:
2022-05-04 13:52:38 -05:00
let
myPackages = pypackages: with pypackages; [
pkgs.xonsh-direnv
];
myPython = pkgs.python3.withPackages myPackages;
in {
2022-04-21 04:49:44 +00:00
# Base packages that need to be in all my hosts
environment.systemPackages = with pkgs; [
agenix.defaultPackage."${system}"
diffutils
git
gnupatch
findutils
2022-08-02 01:50:50 -05:00
hms # My own home manager switcher
2022-04-21 04:49:44 +00:00
home-manager
htop
2022-05-04 13:52:38 -05:00
myPython
2022-04-21 04:49:44 +00:00
pwgen
transcrypt
2022-06-02 09:34:20 -05:00
unzip
2022-04-21 04:49:44 +00:00
vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget
];
}