1
Fork 0

Modified nvim setup a bit + installed game apps (steam, lutris, etc)

This commit is contained in:
Matei Adriel 2023-04-25 16:35:09 +03:00
parent ed7dbca71c
commit b24d90dfbd
No known key found for this signature in database
20 changed files with 184 additions and 37 deletions
hosts/nixos/common/optional

View file

@ -1,8 +0,0 @@
# Not using this for now, because I cannot get any theme to fucking work with it for some reason :(
{
services.xserver = {
enable = true;
displayManager.sddm.enable = true;
};
}

View file

@ -0,0 +1,14 @@
# TODO(imperanence): handle persistence
{ lib, ... }: {
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
};
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"steam"
"steam-original"
"steam-runtime"
];
}