mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-15 12:54:15 +01:00
a7087e2904
This works, and without putting wine directly in $PATH, which is kinda cool.
15 lines
160 B
Nix
15 lines
160 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./osu
|
|
./srb2
|
|
];
|
|
|
|
programs.gamemode.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
typespeed
|
|
];
|
|
}
|