flake/users/guanranwang/home-manager/applications/osu-stable/default.nix

13 lines
218 B
Nix
Raw Normal View History

2024-01-06 06:05:04 +08:00
{
pkgs,
inputs,
config,
...
}: {
home.packages = [
(inputs.nix-gaming.packages.${pkgs.stdenv.hostPlatform.system}.osu-stable.override {
location = "${config.xdg.dataHome}/osu-stable";
})
];
}