flake/home/applications/osu-stable/default.nix

13 lines
218 B
Nix
Raw Normal View History

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