Currently running Fedora on my laptop and Arch on my desktop, though I’ll probably migrate from Fedora to openSUSE next month.
Operating Systems
All things operating system related, from Windows to Mac to Linux distros and the more obscure.
Subcommunity of Technology.
This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.
Here's my config (no hardware):
- OS: Arch
- Kernel: linux-zen
- Window Manager: i3-gaps
- Compositor: picom
I've been running this for several years now across multiple PCs, all with different hardware, including Nvidia and AMD for graphics, and Intel and AMD for CPU - and it's been working really well for me right up until recently.
After this paragraph, I will talk about the issues I've exeprienced as a gamer using my particular config. Please note that it's just a couple of minor issues, and the rest of the experience has been more than wonderful, convenient, functional, and beloved, and I do recommed Arch as a gaming setup as someone who's been running it to play games for several years in a row.
The most recent Steam Next Fest (June 2023) has revealed several demos that behaved like they launched, i.e. Steam changed my status to "in-game", changed the Start button in library, updated the playtime properly, etc., yet the game did not, in fact launch at all. I managed to play the affected demos when I switched to the KDE Plasma desktop environment on the same PC... and back on the same config after that as well.
I would consider that a one-time error that was gone by, essentially, reloading the X server, but there's been another consistent issue that I have only managed to observe in this i3+picom config. Ever since Steam's most recent UI beta, the floating elements, such as the buttons that let you install the game's demo, wishlist it, or navigate the store by the tags applied to the same game, all of which appear when you're hovering your mouse pointer over the game's thumbnail in Steam, are basically ignored; when clicking any of them, the click registers on the element that is supposed to be underneath the element you're actually trying to click: for example, if you're hovering your mouse pointer over a game and want to click the green wide "Install Demo" button, which is floating over another game's thumbnail, you'll click that thumbnail instead and open its Steam page. This particular issue persists between full PC reboots, X server restarts, i3/picom restarts, etc., and never occured in XFCE or KDE Plasma.
As I haven't been using any of the store features in Steam prior to the June's Steam Next Fest, I failed to notice any of the above, but now, I can't deny that it's been annoying. I really like my current configuration for everything I'm doing at my PCs: it's great for my work, it's even great for my gaming, it's great for my leasure, and I don't want to ditch it, because I have already tried many other tiling window managers, and i3-gaps is the one that stuck with me the most.
Now, I know there's sway, which is supposed to be a drop-in alternative, i.e. I can use my i3 config with it no problem, but sway uses the Wayland compositor, so I can't run it as easily: I'll have to set up the SDDM display manager instead of the dead-simple lightdm in order to keep the convenient multi-user setup I have, and probably sacrifice some of the performance my GTX 1080 has been giving with the proprietary drivers (I know, disgusting, but it has worked the best for my hardware as compared to the nouveau, unfortunately). I guess it's just time for me to tinker again.
I've been using Mint without any issues for a while now. I only play Steam games, though.
Also on the latest Mint. I really like it. I was previously on PopOS and enjoyed that, too.
Currently on Artix, but planning on changing to Gentoo soon.
I've been using Fedora for the past few years and have been pretty happy with it. It updates at just the right cadence for me where I get new stuff pretty quickly but I'm not on a rolling release.
gentoo!
i love the versatility it offers, but it's very much so DIY. it has great documentation. anyone who considers themselves a "linux enthusiast" should try an install in a VM at some point or another, if nothing else it's a great learning experience.
for gaming in particular: flatpak steam / lutris / bottles. it's great because it's completely distro agnostic. i can take the $USER/.var directory and put it on any distro with flatpak installed and it'll just work.
A little background for context. I’m gamer and professional software developer. I’ve been dual booting windows 11 and pop os for awhile. Windows for games and pop os for everything else… Over the weekend I switched to NixOS. This came with a learning curve which I spent a day or so learning. I’ve been getting the hang of it now and I love it so much. I definitely recommend it. I managed to get steam working without much fiddling and my emulators. It’s been great! The benefits for programming are obvious. Allowing me to basically stop using docker dev containers.
I completely removed windows from my computer and I’m very happy.
We used to run Ubuntu at my last job, it was so nice! I'm back in Windows land now though..
In my case, I use Fedora exclusively (no dual boot).
I tried PopOS, but I had problems with each update.
Any particular reason for Fedora or is that just what you are comfortable with?
NixOS. If you played around with Arch you'll be fine. My only gripe (although it's kind of important) is NVIDIA doesn't work. Call me lazy but I haven't felt like switching to an other distro, plus I'm not much of a hardcore gamer.
Im really surprised that I don't see zorin os on these types of threads. Its main stick is to be chock full of out of the box software especially around windows compatibility. wine and play on linux are ready right away and I can run most windows programs right after install.
I've been evaluating NixOS to make sure I can run games on it. I've only tried a machine with Intel graphics so far, but I see that AMD and Nvidia drivers are packaged. It seems convenient now that I've figured out the setup.
Vulkan is set up out of the box.
It's necessary to enable 32-bit DRI support by adding this line to /etc/nix/configuration.nix
:
hardware.opengl.driSupport32Bit = true;
To use Lutris install the package and use its UI to install runners. I didn't have to configure any extra libraries to get Battle.net running. You can configure the "system wine" that Lutris sees, and extra libraries your games might need like this:
home.packages = with pkgs; [
(lutris.override {
extraLibraries = pkgs: [
# List library dependencies here
];
extraPkgs = pkgs: [
wine-staging
];
})
];
Those lines go in a Home Manager config file, like ~/.config/home-manager/home.nix
. That installs Lutris, and any listed dependencies at the same time.
NixOS does not put dependencies in the file paths where programs usually look for them. That traditional directory structure is called the Filesystem Hierarchy Standard, or FHS. But Nix packages can create a virtual FHS where needed, and that is what the Lutris package does. That lets software that isn't built for Nix work, like Lutris' Wine runners. That means that for games to access libraries those libraries must be listed in that extraLibraries
option so that they are included in the FHS.
32-bit libraries are in pkgs.pkgsi686Linux.*
if you need them.
I haven't tried Steam yet, but I think it has an option similar to the extraLibraries
one for Lutris.
A nice feature of NixOS is that if you add a bunch of libraries to your config trying to get a game to work, those libraries are automatically unlinked when you remove them from your config so your system stays nice and tidy.
I’ve been having a great time with games on NixOS. Steam just works when you enable it. I believe you can specify extra libraries for the filesystem hierarchy hackery, but I haven’t needed to yet. One thing you should know about (if you don’t already) is steam-run
which is a simple command line tool that automatically wraps things in a normal FHS. Super convenient for the occasional binary :).
Good to know, thanks! Do you find steam-run to be helpful even for non-steam binaries that need an FHS? Or do you use it mainly for games?
Yeah, exactly! For steam
itself on NixOS you don't have to manually use steam-run
, but steam-run
is a handy little tool to wrap / run other commands with the FHS that NixOS sets up for steam. I've mostly used it to run a few Linux games that I have binaries for, but don't have on steam... I'm pretty sure I used it for another Linux program too, but I can't remember what right now.
I'm currently on Pop! OS 22.04 LTS. For me it worked out of the box. That installer with the NVidia drivers already included was a dream, so I didn't have to set up anything special. I did end up preferring the KDE desktop over Gnome, so I just went screw it and installed KDE plasma on top of it. It's been my daily driver like this for years.
Though, honesty requires me to mention that over the 4-ish years I've been using it they pushed a kernel update twice which killed the nvidia drivers, causing you to be unable to boot to the desktop. Solution was as simple as just rebooting into the previous kernel for a while and waiting for an update which fixes it, but still...
Other than that, pretty happy with it and I'm unlikely to change anytime soon.
I tried PopOS but had several issues immediately, including the display flickering despite updating my Nvidia driver. Other than that it just felt like a somewhat worse Ubuntu to me, so I quickly went back to Ubuntu
One thing that bugged me last time I wanted to try out Pop was that my Efi partition was considered too small. It was 500mb, you'd think that'd be enough?
Been gaming on Gentoo for over a year, even if I haven't found much time for gaming in the last few months.
Don't do it if you've gotten too lazy for Arch though. Try Pop!_OS or Linux Mint or something. Enjoy an easy distro for a bit, till you get the itch for Arch back.
I've been on pop os for at least 2 years now, been loving it. Most of my gaming is through steam so compatibility issues are the exception, not the rule. It's a bit of a dream come true to play God of War on Linux, it feels like all the stars aligned.
Even when I bork the install by fucking around in the kernel I wind up getting back on pop rather than finally taking the dive into arch.
On my gaming desktop, I am using Fedora currently with the Awesome WM. That might change though with all the RH stuff going on. On my gaming laptop I switch between Arch and Void with Qtile on both.