Lily33@kbin.socialtoLinux@lemmy.ml•How do you containerize stuff you install from source in a way that you can completely remove later?
11·
1 year agoAny files created by programs running in the dev environments will remain.
Any files created by programs running in the dev environments will remain.
NixOS containers could do what OP’s asking for, but it’ll be trickier with just nix (on other distro). It’ll handle build dependencies and such, but you’ll still need to keep your home or other directories clean some other way.
Does NOT delete any files that were written to, for example,
~/.local
or~/.config
from dev shell.One of OP’s problems was,