nixos-configuration/modules/globalinstalls.nix

19 lines
287 B
Nix
Raw Normal View History

{pkgs, ...}: {
config = {
2023-09-24 12:39:28 +02:00
environment = {
pathsToLink = ["/share/zsh"];
systemPackages = with pkgs; [
pciutils
ncdu
tldr
];
};
programs = {
git.enable = true;
zsh.enable = true;
htop.enable = true;
};
};
}