Files
nixos/profiles/linux/programs.nix
T

31 lines
595 B
Nix
Raw Normal View History

2022-04-21 04:49:44 +00:00
{ pkgs, agenix, ... }:
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}"
bitwarden-cli
2022-04-21 04:49:44 +00:00
diffutils
git
gnupatch
findutils
hms # My own home manager switcher
2022-04-21 04:49:44 +00:00
home-manager
htop
myPython
2022-04-21 04:49:44 +00:00
pwgen
tmux
transcrypt
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
];
}