mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
11 lines
272 B
Nix
11 lines
272 B
Nix
{ 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;
|
|
});
|
|
};
|
|
}
|