Matthew Brunelle

Results 18 comments of Matthew Brunelle

Your recommendation worked successfully. Thank you for taking the time to respond. I noticed you tagged this as enhancement. Should I close the issue since my specific question was resolved...

Just wanted to say the Intellij Plugin is also not working in NixOS. Should I make a separate issue with the details?

Thank you. That built without error! I noticed in the example I had it send to `true`. So also updated it to `false`. It doesn't seem to actually disable the...

I ran into this myself. Tried a couple different approaches and the only one that worked for me was this [example](https://github.com/mahmoudk1000/nix-config/blob/main/flake.nix). Is that the canonical approach? If so I can...

@gBasil here's the [configuration](https://github.com/ciferkey/NixOSConfig/blob/7c5bf6bc9f75823e834a992ec4ec3b67205e1840/flake.nix) I landed on for comparison.

Thank you for the response. I just reran the build with 1.3.1-6 and I'm getting the same error message: ``` /nix/store/y7a5rsd9g4nkxizd8mnrmr19z0q67k8x-python3.8-setuptools-47.3.1/lib/python3.8/site-packages/setuptools/dist.py:454: UserWarning: Normalizing '1.3.1-6' to '1.3.1.post6' warnings.warn(tmpl.format(**locals())) running test WARNING:...

Hmm unfortunately I'm still getting a similar exception: ``` xecuting setuptoolsCheckPhase /nix/store/y7a5rsd9g4nkxizd8mnrmr19z0q67k8x-python3.8-setuptools-47.3.1/lib/python3.8/site-packages/setuptools/dist.py:454: UserWarning: Normalizing '1.3.1-7' to '1.3.1.post7' warnings.warn(tmpl.format(**locals())) running test WARNING: Testing via this command is deprecated and will be...

Thanks for the follow ups. Here's the most recent default.nix: ``` { lib, fetchFromGitHub, cairo, gobject-introspection, gtk3, python3, python38Packages, tlp, wrapGAppsHook }: python3.pkgs.buildPythonApplication rec { pname = "tlpui"; version =...

@d4nj1 Thanks for reaching out. Life has gotten recently so I've not been able to look into this right. I'm hoping to get back to it once I have time.

I had the same problem as @iopg. Confirming that adding `inputs` to `specialArgs` and at the top of my configuration.nix resolved the problem. Here's the [commit](https://github.com/ciferkey/NixOSConfig/commit/e5b2b21f6d8d8bc09a8a9f13bd91b3f7427eaa87) in my config where...