Fix steam compat packages, ge-custom was using overlay some users wont have
This commit is contained in:
parent
aa1aa3ca36
commit
60caa62e0c
1 changed files with 4 additions and 2 deletions
|
@ -4,18 +4,20 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
config,
|
config,
|
||||||
|
inputs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
cfg = config.play.steam;
|
cfg = config.play.steam;
|
||||||
|
|
||||||
# Import proton-cachyos package directly, some users wont chaotics overlay
|
# Import proton packages directly, some users wont chaotics overlay
|
||||||
proton-cachyos = pkgs.callPackage ../../pkgs/proton-cachyos { };
|
proton-cachyos = pkgs.callPackage ../../pkgs/proton-cachyos { };
|
||||||
|
proton-ge-custom = inputs.chaotic.legacyPackages.${pkgs.system}.proton-ge-custom;
|
||||||
|
|
||||||
defaultCompatPackages = [
|
defaultCompatPackages = [
|
||||||
pkgs.proton-ge-custom
|
|
||||||
proton-cachyos
|
proton-cachyos
|
||||||
|
proton-ge-custom
|
||||||
];
|
];
|
||||||
|
|
||||||
finalCompatPackages = defaultCompatPackages ++ cfg.extraCompatPackages;
|
finalCompatPackages = defaultCompatPackages ++ cfg.extraCompatPackages;
|
||||||
|
|
Loading…
Add table
Reference in a new issue