15 lines
396 B
Nix
15 lines
396 B
Nix
{ user, home }:
|
|
{ config, pkgs, ... }:
|
|
let
|
|
hmConfig = config.home-manager.users.${user};
|
|
in
|
|
{
|
|
environment.persistence."/persist/state"."${home}/.local/share/PrismLauncher" = { };
|
|
|
|
home-manager.users.${user}.home = {
|
|
packages = with pkgs; [ prismlauncher ];
|
|
file."Games/PrismLauncher".source =
|
|
hmConfig.lib.file.mkOutOfStoreSymlink "${home}/.local/share/PrismLauncher";
|
|
};
|
|
}
|