mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-25 08:09:08 +02:00
18 lines
329 B
Nix
18 lines
329 B
Nix
{ ... }: {
|
|
flake.nixosModules.steam = { pkgs-unstable, ... }: {
|
|
programs.steam = {
|
|
enable = true;
|
|
extest.enable = true;
|
|
|
|
extraCompatPackages = with pkgs-unstable; [
|
|
proton-ge-bin
|
|
];
|
|
|
|
extraPackages = with pkgs-unstable; [
|
|
gamescope
|
|
mangohud
|
|
];
|
|
};
|
|
};
|
|
}
|