Refactor package management into modular Nix configuration

This commit is contained in:
2025-09-25 18:25:01 +02:00
parent 244567f465
commit 781cb53032
14 changed files with 181 additions and 118 deletions

View File

@@ -0,0 +1,17 @@
{
pkgs,
inputs,
system,
...
}:
{
environment.systemPackages = with pkgs; [
# Gaming platforms
lutris
wineWowPackages.waylandFull
inputs.prismlauncher-cracked.packages.${system}.default
# Games
space-cadet-pinball
tty-solitaire
];
}