nix-config/games/default.nix
Donovan Glover a7087e2904
Add osu-stable
This works, and without putting wine directly in $PATH, which is kinda
cool.
2023-05-31 10:18:38 -04:00

15 lines
160 B
Nix

{ pkgs, ... }:
{
imports = [
./osu
./srb2
];
programs.gamemode.enable = true;
environment.systemPackages = with pkgs; [
typespeed
];
}