This commit is contained in:
Joseph DiGiovanni 2024-08-06 20:10:50 -04:00
parent 62fb09cc85
commit 1a1e54062e
4 changed files with 8 additions and 3 deletions

View file

@ -9,7 +9,6 @@ let
};
gpu-screen-recorder = final.unstable.gpu-screen-recorder;
icoextract = final.unstable.icoextract; #TODO: remove in next release
mkvextract-gtk = pkgs.callPackage ./mkvextract-gtk.nix { };
};
@ -21,6 +20,10 @@ let
hide-top-bar = final.unstable.gnomeExtensions.hide-top-bar; # TODO: Remove when version 117 is in stable
};
godot_4 = final.unstable.godot_4;
icoextract = final.unstable.icoextract; #TODO: remove in next release
proton-ge-bin = final.unstable.proton-ge-bin;
unstable = import inputs.nixpkgs-unstable {
inherit (final) config system;
};

View file

@ -16,7 +16,7 @@
steam
transmission-gtk
github-desktop
unstable.godot_4
godot_4
youtube-music
via
];

View file

@ -13,6 +13,7 @@
systemd-boot = {
enable = true;
configurationLimit = 5;
consoleMode = "auto";
};
};

View file

@ -1,8 +1,9 @@
{ config, lib, ... }:
{ config, lib, pkgs, ... }:
{
config.programs.steam = lib.mkIf config.programs.steam.enable {
dedicatedServer.openFirewall = lib.mkDefault true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
gamescopeSession.enable = lib.mkDefault true;
localNetworkGameTransfers.openFirewall = lib.mkDefault true;
remotePlay.openFirewall = lib.mkDefault true;