mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
10 lines
101 B
Nix
10 lines
101 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.yoda = {
|
|
packages = with pkgs; [
|
|
git
|
|
];
|
|
};
|
|
}
|