add appimage-run; update flake.lock; add proton-ge-bin; fix godot

This commit is contained in:
2025-04-16 10:23:41 +01:00
parent 89ceac6561
commit 13a7e9b0db
4 changed files with 42 additions and 31 deletions

View File

@@ -68,16 +68,18 @@
# $ nix search wget
environment.systemPackages = with pkgs;
[
# utils
vim
curl
inetutils
rar
nuspell
hunspellDicts.en-gb-large
libva-utils
smartmontools
appimage-run
# dicts
nuspell
hunspellDicts.en-gb-large
# For cursor in steam?
xsettingsd

View File

@@ -1,4 +1,4 @@
{ ... }:
{ pkgs, ... }:
{
hardware.graphics.enable32Bit = true; # For 32 bit applications
@@ -10,11 +10,12 @@
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
#gamescopeSession.enable = true;
protontricks.enable = true;
extraCompatPackages = [ pkgs.proton-ge-bin ];
};
programs.gamemode.enable = true;
programs.gamescope.enable = true;
# ensure users who need access to this have `cdrom` as `extraGroups`
# Wait for https://github.com/NixOS/nixpkgs/issues/393534 to be in stable to reenable
# programs.cdemu.enable = true;
# Wait for https://github.com/NixOS/nixpkgs/pull/397358 to be in stable to reenable
programs.cdemu.enable = true;
}