about summary refs log tree commit diff stats
path: root/system/tempfiles/default.nix
blob: 9e83fa34f630bd5d3be841ba67148e4875113177 (plain) (blame)
1
2
3
4
5
6
{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
  ];
}