Files
nixos/profiles/base/programs.nix
T

29 lines
542 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
home-manager
htop
2022-05-04 13:52:38 -05:00
myPython
2022-04-21 04:49:44 +00:00
pwgen
tmux
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
yamllint # Used in vim
];
}