nix-config/home/gburd/features/games/yuzu.nix

11 lines
233 B
Nix
Raw Normal View History

{ pkgs, lib, ... }: {
home.packages = [ pkgs.yuzu-mainline ];
home.persistence = {
"/persist/home/misterio" = {
allowOther = true;
directories = [ "Games/Yuzu" ".config/yuzu" ".local/share/yuzu" ];
};
};
}