Structural changes

This commit is contained in:
David C
2023-05-15 20:04:36 -04:00
parent 4d3a16a2d4
commit 291db5d45b
14 changed files with 269 additions and 698 deletions

15
programs/games.nix Normal file
View File

@@ -0,0 +1,15 @@
{ lib, config, pkgs, ... }: {
# For steam
services.flatpak.enable = true;
# Game compat
programs.gamemode.enable = true;
environment.systemPackages = with pkgs; [
# Minecraft
openjdk17
prismlauncher
# PS2 Games
pcsx2
];
}