nixos/modules/core/packages.nix

14 lines
111 B
Nix

{
config,
pkgs,
...
}:
{
programs = {
};
environment.systemPackages = with pkgs; [
git
];
}