nix-git/modules/git.nix

10 lines
101 B
Nix
Raw Normal View History

2023-08-31 14:26:52 +02:00
{ config, pkgs, ... }:
{
users.users.yoda = {
2023-09-05 16:20:15 +02:00
packages = with pkgs; [
git
];
2023-08-31 14:26:52 +02:00
};
}