nix-git/modules/yodaYoga.nix
2023-09-14 14:43:25 +02:00

17 lines
345 B
Nix

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