blob: f94ddcee05bce7299fa46e3b9cd8f8c3566f46ef (
plain) (
blame)
1
2
3
4
5
6
7
|
# vim: ts=2
{config, ...}: {
systemd.tmpfiles.rules = [
# this file is needed to trash stuff on the temp fs
"d /.Trash 1777 root root" # TODO move this to the lf config
];
}
|