Sync the projects folder between devices but ignore all git state

This commit is contained in:
SebastianStork 2024-03-25 15:13:15 +01:00
parent 11a4bd0bbf
commit 8fd578e573

View file

@ -62,9 +62,19 @@
versioning = staggeredVersioning;
ignorePerms = false;
};
Projects = {
path = "/home/seb/Projects";
devices = allDevices;
ignorePerms = false;
};
};
};
};
home-manager.sharedModules = [
{
home.file."Projects/.stignore".text = ".git/";
}
];
};
}