nix-git/modules/yodaYoga.nix

11 lines
272 B
Nix
Raw Normal View History

2023-09-14 11:54:51 +02:00
{ config, pkgs, ... }:
{
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
home.file."readonly-git/BikeTripPlanner".source = (builtins.fetchGit {
url = "https://github.com/langbein-daniel/BikeTripPlanner";
#leaveDotGit = true;
});
};
}