Mihai Fufezan

Results 491 comments of Mihai Fufezan

FYI https://github.com/hyprwm/Hyprland/commit/763d5fa05f7d0191182a1d6cd827415a65293f99 breaks wezterm. It says it's started but does not appear, and `hyprctl clients` lists only broken clients: ```json { "address": "0x3950050", "mapped": false, "hidden": false, "at": [ 0,...

There are several explanations why Cachix would not work: 1. Using overlays. Those will use your configuration's `nixpkgs` which is most likely not matching the Hyprland flake's `nixpkgs`. 2. Manually...

I usually do not recommend using overlays precisely due to these kinds of issues. What I'm thinking of doing is using `flake-parts`' `easyOverlay` module, when I'll have time to transition...

Do the current overlays work? Can I close this issue?

I've worked on porting most of the stuff from the Makefile to CMake, and it works fine, except in the Nix build, where CMake seems to build Hyprland twice for...

https://github.com/hyprwm/Hyprland/pull/5667 please test this.

I'm not familiar with the game. Maybe you could try to write a derivation for it and PR?

Gamemode support can be achieved the same as [here](https://github.com/fufexan/nix-gaming/blob/master/pkgs/legendary/default.nix#L46). For DLCs/Mods, I think we can have a list/attrset of them and unpack them in the specific directories. Shouldn't be too...

Looks good, what doesn't work? Does the resulting script have the gamemode invocation as expected?

Oh, I know what's going on. The `$out` in `writeShellScriptBin` refers to the script's outPath, not the entire derivation's. So you'll have to `echo` the command to `$out/bin/darkest` instead of...