Skip to content

Commit 531fecf

Browse files
authored
feat: add lutrix and artix games game launchers (#141)
1 parent 19b7625 commit 531fecf

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

modules/features/gaming/artix.nix

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
flake.homeModules.gaming =
3+
{ pkgs, ... }:
4+
{
5+
allowedUnfreePackages = [ "artix-games-launcher" ];
6+
7+
home.packages = [ pkgs.artix-games-launcher ];
8+
};
9+
}

modules/features/gaming/lutris.nix

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
flake.homeModules.gaming =
3+
{ pkgs, ... }:
4+
{
5+
programs.lutris = {
6+
enable = true;
7+
winePackages = [ pkgs.wineWow64Packages.full pkgs.winetricks ];
8+
};
9+
};
10+
}

0 commit comments

Comments
 (0)