12 lines
218 B
Nix
12 lines
218 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
config,
|
|
...
|
|
}: {
|
|
home.packages = [
|
|
(inputs.nix-gaming.packages.${pkgs.stdenv.hostPlatform.system}.osu-stable.override {
|
|
location = "${config.xdg.dataHome}/osu-stable";
|
|
})
|
|
];
|
|
}
|