12 lines
172 B
Nix
12 lines
172 B
Nix
|
|
{ pkgs, ... }: {
|
||
|
|
home = {
|
||
|
|
packages = with pkgs.unstable; [
|
||
|
|
wechat-uos
|
||
|
|
];
|
||
|
|
|
||
|
|
sessionVariables = {
|
||
|
|
WECHAT_DATA_DIR = "~/.local/WeChat";
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|