nix-git/modules/git.nix

10 lines
107 B
Nix

{ config, pkgs, ... }:
{
users.users.yoda = {
packages = with pkgs; [
git
];
};
}