This commit is contained in:
2025-07-20 18:14:43 +09:00
parent 98ae91efaf
commit 04b311a04f
2 changed files with 7 additions and 1 deletions

View File

@@ -27,7 +27,9 @@
programming = import ./pkgs/programming.nix { inherit pkgs; };
tools = import ./pkgs/tools.nix { inherit pkgs; };
util = import ./pkgs/util.nix { inherit pkgs; };
in fonts ++ minecraft ++ misc ++ network ++ programming ++ tools ++ util;
games = import ./pkgs/games.nix { inherit pkgs; };
in fonts ++ minecraft ++ misc ++ network ++ programming ++ tools ++ util
++ games;
programs.direnv.enable = true;
programs.direnv.nix-direnv.enable = true;

4
pkgs/games.nix Normal file
View File

@@ -0,0 +1,4 @@
{ pkgs, ... }:
with pkgs;
[ flightgear ]