update and fix/ignore currently broken rust builds
This commit is contained in:
@@ -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
|
||||
];
|
||||
};
|
||||
|
||||
@@ -9,7 +9,7 @@ in
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
easyeffects
|
||||
#easyeffects #rust build broken atm
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user