Move modules folders

This commit is contained in:
Filippo Berto 2025-09-11 14:00:31 +02:00
parent 914909009c
commit c1101e7b45
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
183 changed files with 327 additions and 327 deletions

44
nixos/steam.nix Normal file
View file

@ -0,0 +1,44 @@
{ pkgs, ... }: {
programs.steam = {
enable = true;
package = pkgs.steam.override {
# extraLibraries = pkgs: with pkgs; [
# dconf.lib
# gnome.gvfs
# # icu
# # libdrm
# ];
# extraPkgs = pkgs: with pkgs; [
# # icu
# ];
# extraProfile = ''
# export GSETTINGS_SCHEMA_DIR="${pkgs.gsettings-desktop-schemas}/share/gsettings-schemas/${pkgs.gsettings-desktop-schemas.name}/glib-2.0/schemas/"
# '';
};
extraPackages = [
pkgs.gamescope
];
extraCompatPackages = [
pkgs.proton-ge-bin
];
remotePlay.openFirewall = true;
extest.enable = true;
};
fonts.packages = [
pkgs.liberation_ttf
pkgs.wqy_zenhei
];
# networking.firewall = {
# allowedTCPPorts = [
# 27036
# 27037
# ];
# allowedUDPPorts = [
# 27031
# 27036
# ];
# };
}