spin off games folder

This commit is contained in:
Sean Kovacs 2025-12-19 12:54:45 -05:00
commit 1666d20a66
Signed by: sckova
GPG key ID: 00F325187C68651A
5 changed files with 24 additions and 8 deletions

View file

@ -161,11 +161,10 @@
browsh
mosh
spotify-player
gh
# development & tooling
gh
jdk21_headless
xorg.xcursorgen
# kde and kde theming
kde-rounded-corners
@ -178,10 +177,6 @@
bitwarden-desktop
qbittorrent
# gui applications ( games )
openmw
prismlauncher
# gui applications ( multimedia )
audacity
strawberry

View file

@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
(prismlauncher.override {
jdks = [
jdk25
jdk21
jdk17
jdk8
];
})
];
}

View file

@ -0,0 +1,5 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [ openmw ];
}