change file place
This commit is contained in:
parent
f7e66190d6
commit
15a871287b
3 changed files with 2 additions and 2 deletions
|
@ -19,6 +19,7 @@
|
|||
++ [(import ./rider.nix)] # C# JetBrain editor
|
||||
++ [(import ./scripts/scripts.nix)] # personal scripts
|
||||
++ [(import ./starship.nix)]
|
||||
# ++ [ (import ./steam.nix) ]
|
||||
++ [(import ./swaylock.nix)]
|
||||
++ [(import ./vscodium.nix)]
|
||||
++ [(import ./waybar)]
|
||||
|
|
21
modules/home/steam.nix
Normal file
21
modules/home/steam.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ pkgs, lib, ... }:
|
||||
{
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
remotePlay.openFirewall = true;
|
||||
dedicatedServer.openFirewall = false;
|
||||
};
|
||||
programs.gamemode.enable = true;
|
||||
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
|
||||
"steam"
|
||||
"steam-original"
|
||||
"steam-runtime"
|
||||
];
|
||||
# proton-ge-bin
|
||||
|
||||
# warning: The package proton-ge in nix-gaming has been deprecated as of 2024-03-17.
|
||||
|
||||
# You should use proton-ge-bin from Nixpkgs, which conforms to
|
||||
# the new `extraCompatTools` module option under `programs.steam`
|
||||
# For details, see the relevant pull request:
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue