nix: Simplify

This commit removes some premature modularization to make it easier to
see and manipulate everything at once.
This commit is contained in:
Donovan Glover 2023-06-04 09:14:19 -04:00
parent f55b5ae2db
commit 4cdf7d0e04
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
4 changed files with 6 additions and 23 deletions

View File

@ -47,7 +47,7 @@
./user.nix
./desktop
./dev
./games
./games.nix
./host
./terminal
./containers/rar.nix

View File

@ -1,7 +1,12 @@
{ pkgs, lib, ... }:
{
programs.gamemode.enable = true;
environment.systemPackages = with pkgs; [
(pkgs.callPackage ./packages/srb2 { })
slade
typespeed
osu-lazer-bin
];

View File

@ -1,14 +0,0 @@
{ pkgs, ... }:
{
imports = [
./osu
./srb2
];
programs.gamemode.enable = true;
environment.systemPackages = with pkgs; [
typespeed
];
}

View File

@ -1,8 +0,0 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
(pkgs.callPackage ../../packages/srb2 { })
slade
];
}