0hlov3
banner
0hlov3.bsky.social
0hlov3
@0hlov3.bsky.social
👨‍💻 Passionate DevOps Engineer & Kubestronaut | Advocate for #InfrastructureAsCode, #Automation, #Kubernetes, #Docker, #Go (#GoLang), #Linux and #Bash.

🌍 Here to connect with like-minded #people, share knowledge, and learn something new every day.
And because I use it all the time, I added two handy aliases:

```
alias ndz='nix develop . --command zsh -l'
alias nsz='nix-shell -p zsh --run "zsh -l"'
```

Now every nix develop feels just like my normal shell =)
October 6, 2025 at 9:17 PM
[...]
graphics.enable32Bit = true;
nvidia = {
modesetting.enable = true;
powerManagement.enable = false;
powerManagement.finegrained = false;
open = true;
nvidiaSettings = true;
package = config.boot.kernelPackages.nvidiaPackages.stable;
};
};
}
October 6, 2025 at 9:14 PM
nvidia.nix

```nix
{config, ...}: {
# Enable the Xorg Xserver
services.xserver.enable = true;
# Load nvidia driver for Xorg and Wayland
services.xserver.videoDrivers = ["nvidia"];
hardware = {
opengl = {
enable = true;
};
[...]
October 6, 2025 at 9:13 PM
lutris.nix

```nix
{pkgs, ...}: {
programs.steam.enable = true;
programs.steam.gamescopeSession.enable = true;
programs.gamemode.enable = true;
environment.systemPackages = with pkgs; [
mangohud
protonup-qt
lutris
];
}
```
October 6, 2025 at 9:11 PM
Sounds nice, i`ll leave a star. I would like to contribute, but my time is very limited at the moment. :(
July 9, 2025 at 12:29 PM