Closed different-name closed 1 month ago
I don't want to split up the persistence.nix as mentioned, maybe i'll make a module that takes a list of sets in the following format, instead of having home.packages
[
{
package = pkgs.vesktop;
folders = [
".config/vesktop"
];
}
{
package = pkgs.unityhub;
folders = [
".config/unityhub"
".config/unity3d"
];
}
];
Took a different approach in #56
There's probably a better way to add packages than keeping a list of
home.packages
inhome/global/default.nix
Perhaps they should be added to the default.nix files in the global folder? This would help split up the general persistence.nix file as well