update and fix/ignore currently broken rust builds

This commit is contained in:
Kopatz
2024-08-16 12:48:52 +02:00
parent 8df7c8ef91
commit 5484575693
6 changed files with 51 additions and 30 deletions

View File

@@ -1,19 +1,18 @@
{config, lib, pkgs, ...}:
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.custom.graphical.games;
in
{
options.custom.graphical.games = {
enable = mkEnableOption "Enables games";
};
let cfg = config.custom.graphical.games;
in {
options.custom.graphical.games = { enable = mkEnableOption "Enables games"; };
config = mkIf cfg.enable {
programs.steam = {
enable = true;
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
remotePlay.openFirewall =
true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall =
true; # Open ports in the firewall for Source Dedicated Server
gamescopeSession.enable = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
};
environment.systemPackages = with pkgs; [
taisei
@@ -23,7 +22,7 @@ in
lutris
mangohud
prismlauncher
tetrio-desktop
#tetrio-desktop #fuck you osk
#libs
];
};

View File

@@ -9,7 +9,7 @@ in
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
easyeffects
#easyeffects #rust build broken atm
];
};
}