forked from fabian/nix_config
10 lines
113 B
Nix
10 lines
113 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib; {
|
|
systemd.user.tmpfiles.rules = [
|
|
"d %t/tmp 0700 chem chem 24h"
|
|
];
|
|
}
|