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
|
./user.nix
|
||||||
./desktop
|
./desktop
|
||||||
./dev
|
./dev
|
||||||
./games
|
./games.nix
|
||||||
./host
|
./host
|
||||||
./terminal
|
./terminal
|
||||||
./containers/rar.nix
|
./containers/rar.nix
|
||||||
|
@ -1,7 +1,12 @@
|
|||||||
{ pkgs, lib, ... }:
|
{ pkgs, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
programs.gamemode.enable = true;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
(pkgs.callPackage ./packages/srb2 { })
|
||||||
|
slade
|
||||||
|
typespeed
|
||||||
osu-lazer-bin
|
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