mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-14 20:33:59 +01:00
nix: Simplify
This commit removes some premature modularization to make it easier to see and manipulate everything at once.
This commit is contained in:
parent
f55b5ae2db
commit
4cdf7d0e04
@ -47,7 +47,7 @@
|
||||
./user.nix
|
||||
./desktop
|
||||
./dev
|
||||
./games
|
||||
./games.nix
|
||||
./host
|
||||
./terminal
|
||||
./containers/rar.nix
|
||||
|
@ -1,7 +1,12 @@
|
||||
{ pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
programs.gamemode.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
(pkgs.callPackage ./packages/srb2 { })
|
||||
slade
|
||||
typespeed
|
||||
osu-lazer-bin
|
||||
];
|
||||
|
@ -1,14 +0,0 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./osu
|
||||
./srb2
|
||||
];
|
||||
|
||||
programs.gamemode.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
typespeed
|
||||
];
|
||||
}
|
@ -1,8 +0,0 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
(pkgs.callPackage ../../packages/srb2 { })
|
||||
slade
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue
Block a user