nix-git/modules/yodaYoga.nix
2023-09-27 12:06:14 +02:00

18 lines
413 B
Nix

{ config, pkgs, ... }:
{
users.users.yoda = {
packages = with pkgs; [
# TODO: Is git required for home-manager "builtins.fetchGit"
git
];
};
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
home.file."readonly-git/BikeTripPlanner".source = (builtins.fetchGit {
url = "https://github.com/langbein-daniel/BikeTripPlanner";
#leaveDotGit = true;
});
};
}