Files
nixos/profiles/base/programs.nix
T

31 lines
595 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}"
2022-06-10 01:09:52 -05:00
bitwarden-cli
2022-04-21 04:49:44 +00:00
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
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
];
}