about summary refs log tree commit diff stats
path: root/system/tempfiles/default.nix
blob: 2d48b02e3db49a9899b9b315f95328a56574981f (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
  ];
}