This commit is contained in:
cnst
2024-06-29 20:07:07 +02:00
parent 2f02cf259f
commit 3da5284209
6 changed files with 13 additions and 16 deletions

View File

@@ -3,6 +3,7 @@
./zellij
./firefox
./neovim
./lutris
];
home.packages = with pkgs; [
# APPLICATIONS

View File

@@ -0,0 +1,12 @@
{pkgs, ...}: {
home.packages = [
(pkgs.lutris.override {
extraPkgs = p: [
p.wineWowPackages.staging
p.pixman
p.libjpeg
p.gnome.zenity
];
})
];
}