mirror of
https://github.com/js0ny/dotfiles.git
synced 2026-03-22 10:42:42 +00:00
12 lines
232 B
Nix
12 lines
232 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
systemd.user.tmpfiles.rules = [
|
|
"d ${config.home.homeDirectory}/.sandbox/.per-app/wechat 0700 ${config.home.username} users -"
|
|
];
|
|
home.packages = with pkgs; [
|
|
wechat-uos-sandboxed
|
|
];
|
|
}
|