26 Dec 2024 |
| phaer changed their display name from phaer to phaer (8650 at 38c3). | 17:42:09 |
| Collin Arnett joined the room. | 21:51:09 |
Collin Arnett | Hello, I have emacs-overlay setup with emacsWithPackagesFromUsePackage and I wanted to know if there was anything special I needed to do if I wanted to split up my emacs.el file. | 21:51:58 |
27 Dec 2024 |
| ZM Berber changed their profile picture. | 10:24:37 |
bmgsh | hi. i am having a problem with go when using direnv . go build works, the vterm is setup correctly. however, when i try to use go-mode the go-import-add I get an error that there is no such package. I am assuming that it is because shell-command is not inheriting the .bashrc and hence not the .envrc because it is non-interactive | 11:30:33 |
bmgsh | does anyone have a solution on how to get the .envrc globally used when starting a project | 11:31:47 |
linj | In reply to @bmgsh:matrix.org hi. i am having a problem with go when using direnv . go build works, the vterm is setup correctly. however, when i try to use go-mode the go-import-add I get an error that there is no such package. I am assuming that it is because shell-command is not inheriting the .bashrc and hence not the .envrc because it is non-interactive https://github.com/purcell/inheritenv may help | 12:00:46 |
| ZM Berber changed their display name from ZM Berber to ZM Berber 2814. | 19:28:13 |
| Linus Pleyer changed their display name from pyriphlegeton to Linus Pleyer. | 23:20:09 |
29 Dec 2024 |
| Mae Miller [it/she] changed their profile picture. | 07:11:57 |
30 Dec 2024 |
bmgsh | thank you. that did the trick! very helpful library | 07:03:49 |
31 Dec 2024 |
| ZM Berber changed their display name from ZM Berber 2814 to ZM Berber. | 05:07:24 |
| @siraben:matrix.org left the room. | 14:51:18 |
| phaer changed their display name from phaer (8650 at 38c3) to phaer. | 19:24:11 |
| Yuki Langley (they/them) changed their profile picture. | 19:36:09 |
| Yuki Langley (they/them) changed their display name from Yuki (they/them) to Yuki Langley (they/them). | 19:36:20 |
| Yuki Langley (they/them) changed their profile picture. | 19:36:31 |
1 Jan 2025 |
psionic-lights | https://www.youtube.com/watch?v=nEmRr1j8LR0 | 07:57:25 |
| NixOS Moderation Botchanged room power levels. | 14:26:15 |
3 Jan 2025 |
allrealmsoflife | my emacs isn't finding fonts, I keep getting error: font not available, and I havent used emacs in too long to know the issue or the option, I searched online but this is taking too long already | 07:11:26 |
allrealmsoflife | font-family-list shows the fonts but when adding (set-frame-font "Iosevka-18" nil t) outputs error font not available. | 07:59:40 |
allrealmsoflife | I haven't used the correct full name for the fonts, it works now. | 08:06:35 |
5 Jan 2025 |
| jgart joined the room. | 03:08:29 |
6 Jan 2025 |
ldeck | Gday, after upgrading to nixpkgs 24.11 etc I'm seeing a runtime error for emacs:
⛔ Warning (comp): libgccjit.so: error: error invoking gcc driver
⛔ Warning (comp): /nix/store/wd1qb2xjpyfakvhcbwdziwl72piapj94-emacs-29.4/share/emacs/site-lisp/site-start.el: Error: Internal native compiler error failed to compile
According to jian-lin (https://github.com/NixOS/nixpkgs/pull/361752#issuecomment-2537916509) a fix is available via the emacs-overlay. However, I'm already using that with a very recent commit. (I'm using home-manager and have an emacs.nix to apply the overlay and config: https://github.com/ldeck/nix-home/blob/master/lib/defaults/emacs.nix).
Any ideas on how to get the fix or apply a work around? | 02:24:01 |
adisbladis | It looks like it's been stuck in the staging workflow for quite some time | 02:33:28 |
adisbladis | https://github.com/NixOS/nixpkgs/pull/369690 | 02:33:29 |
ldeck | Yeah, that's for nixpkgs 24.11, but I was under the impression (perhaps wrongly) that emacs-overlay might provide a work around. Any suggested work arounds? | 02:36:46 |
adisbladis | Yes, but are you actually using one of the overlay Emacs derivations? It doesn't override the default Emacs attribute. | 02:38:07 |
ldeck | I've got the following in my emacs.nix module. Is that not all that's needed?
{ config, pkgs, lib, ... }:
with lib;
let
sources = import ../../nix/sources.nix;
...
in
{
...
nixpkgs.overlays = [ (import sources.emacs-overlay) ];
...
| 02:47:26 |
ldeck | * I've got the following in my hm emacs.nix module. Is that not all that's needed?
{ config, pkgs, lib, ... }:
with lib;
let
sources = import ../../nix/sources.nix;
...
in
{
...
nixpkgs.overlays = [ (import sources.emacs-overlay) ];
...
| 02:47:45 |