Sender | Message | Time |
---|---|---|
30 Sep 2022 | ||
* I'm very confused about how to add musnix as a flake and later call musnix.enable on my configuration.nix file. Does anybody have a link to a working example so I can see the proper setup? The repo is not too clear on this for a newbie that's still figuring the Nix ecosystem. | 18:03:09 | |
18:06:36 | ||
so, musnix is another repository containing Nix files, which you can track using inputs , this allows your configuration to use a fixed version of that repo, while allowing manual upgrades | 21:11:04 | |
you can add this input by adding near the top inputs.musnix.url = "github:musnix/musnix"; | 21:11:28 | |
the usefulness of the musnix flakes itself comes from its outputs, which you can look at by doing nix flake show github:musnix/musnix | 21:12:15 | |
which gives:
| 21:12:36 | |
* you can add this input by adding near the top inputs.musnix.url = "github:musnix/musnix"; , and adding musnix to the arguments of the outputs function. | 21:13:17 | |
so you're interested in either musnix.nixosModule and musnix.nixosModules.musnix | 21:13:30 | |
(nixosModule was deprecated for nixosModules.default , so I suggest using the second one) | 21:13:53 | |
so, in your nixosSystem call, you can add in your modules / imports the expression musnix.nixosModules.musnix | 21:14:27 | |
| 21:15:59 | |
Minijackson: Thank you very much for detailing the mechanisms! I'll try this tomorrow again and see what knowledge gaps I still have :) | 21:19:52 | |
I agree, we're missing a lot of flakes documentation in the NixOS/nixpkgs manual | 21:20:27 | |
or even an in-depth tutorial | 21:20:33 | |
(well this is a new/experimental feature) | 21:20:51 | |
1 Oct 2022 | ||
06:18:48 | ||
Turns out I wasn't that far off. It seems I simply was confused by not seeing any update on max-user-freq values. | 13:45:26 | |
5 Oct 2022 | ||
19:04:32 | ||
6 Oct 2022 | ||
18:53:53 | ||
15 Oct 2022 | ||
17:07:55 | ||
Hey! 🙋 I'm just getting back into audio production (first time on NixOS). I've found a number of free synths packaged into nixpkgs, but I haven't been able to find u-he's Zebralette or Tyrell N6. Do you know if they're available somewhere? If not, would any of you have a derivation for them or be able to help me write one? 🙏 | 17:10:15 | |
Thomas Heartman (he/him): https://cs.github.com/?scopeName=All+repos&scope=&q=Zebralette+u-he+language%3Anix | 17:37:14 | |
(in case its still auth-gated, single result; this) | 17:37:43 | |
Oh, sick! Thank you so much 😄 | 17:41:41 | |
Download image.png | 17:49:58 | |
I had to do some minor changes (update to the latest version), but it seems to have worked. For reference, here's what I ended up with:
However, when trying to run the plugins (in Bitwig), I'm getting these messages: | 17:49:58 | |
* I had to do some minor changes (update to the latest version), but it seems to have worked. For reference, here's what I ended up with:
However, when trying to run the plugins (in Bitwig), I'm getting the above error (Installation issue: no GUI resources. Please run the installer again). Does that sound familiar? | 17:50:22 | |
nope, never touched the Actual Thing just did my usual search :P | 17:51:18 | |
maybe LD_DEBUG=libs and/or strace | grep dlopen | 17:51:36 | |
* maybe LD_DEBUG=libs | 17:51:48 |