nixos-configuration/modules/globalinstalls.nix
Vinzenz Schroeter 38c7c96dcc upgrade to nixos-23.11
nix-channel --add https://nixos.org/channels/nixos-23.11 nixos

nix-channel --add https://github.com/nix-community/home-manager/archive/release-23.11.tar.gz home-manager

nix-channel --update

sudo nixos-rebuild boot --upgrade
2023-12-03 13:12:48 +01:00

28 lines
462 B
Nix

{pkgs, ...}: {
config = {
environment = {
pathsToLink = ["/share/zsh"];
systemPackages = with pkgs; [
pciutils
ncdu
tldr
glances
];
};
programs = {
zsh.enable = true;
htop.enable = true;
iotop.enable = true;
nano = {
enable = true;
syntaxHighlight = true;
};
git = {
enable = true;
package = pkgs.gitFull;
};
};
};
}